glances/setup.py

122 lines
3.5 KiB
Python
Raw Normal View History

2011-12-05 09:26:36 +00:00
#!/usr/bin/env python
import glob
import os
import re
import sys
from io import open
2011-12-05 09:26:36 +00:00
2015-11-25 14:28:26 +00:00
from setuptools import setup, Command
2018-01-26 18:03:33 +00:00
if sys.version_info < (2, 7) or (3, 0) <= sys.version_info < (3, 4):
print('Glances requires at least Python 2.7 or 3.4 to run.')
sys.exit(1)
# Global functions
##################
with open(os.path.join('glances', '__init__.py'), encoding='utf-8') as f:
version = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", f.read(), re.M).group(1)
if not version:
raise RuntimeError('Cannot find Glances version information.')
with open('README.rst', encoding='utf-8') as f:
long_description = f.read()
def get_data_files():
data_files = [
('share/doc/glances', ['AUTHORS', 'COPYING', 'NEWS', 'README.rst',
2017-01-07 09:09:27 +00:00
'CONTRIBUTING.md', 'conf/glances.conf']),
('share/man/man1', ['docs/man/glances.1'])
]
return data_files
def get_install_requires():
requires = ['psutil>=5.3.0']
if sys.platform.startswith('win'):
requires.append('bottle')
return requires
2015-11-25 14:28:26 +00:00
class tests(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
import subprocess
import sys
for t in glob.glob('unitest.py'):
2015-11-25 14:28:26 +00:00
ret = subprocess.call([sys.executable, t]) != 0
if ret != 0:
raise SystemExit(ret)
raise SystemExit(0)
2012-03-13 23:14:02 +00:00
# Setup !
2013-01-12 19:02:00 +00:00
setup(
2013-08-10 13:38:12 +00:00
name='Glances',
version=version,
2013-04-08 14:16:00 +00:00
description="A cross-platform curses-based monitoring tool",
long_description=long_description,
2013-01-12 19:02:00 +00:00
author='Nicolas Hennion',
author_email='nicolas@nicolargo.com',
2013-04-08 14:16:00 +00:00
url='https://github.com/nicolargo/glances',
2017-01-21 18:39:34 +00:00
license='LGPLv3',
2013-01-12 19:02:00 +00:00
keywords="cli curses monitoring system",
install_requires=get_install_requires(),
2013-01-12 19:02:00 +00:00
extras_require={
'action': ['pystache'],
'browser': ['zeroconf>=0.17'],
'cloud': ['requests'],
'cpuinfo': ['py-cpuinfo'],
'docker': ['docker>=2.0.0'],
'export': ['bernhard', 'cassandra-driver', 'couchdb', 'elasticsearch',
2017-03-25 17:02:42 +00:00
'influxdb>=1.0.0', 'kafka-python', 'pika', 'potsdb',
'prometheus_client', 'pyzmq', 'statsd'],
'folders': ['scandir'], # python_version<"3.5"
'gpu': ['nvidia-ml-py'], # python_version=="2.7"
'ip': ['netifaces'],
'raid': ['pymdstat'],
'snmp': ['pysnmp'],
'web': ['bottle', 'requests'],
'wifi': ['wifi']
2013-01-12 19:02:00 +00:00
},
2013-04-08 14:16:00 +00:00
packages=['glances'],
2013-01-12 19:02:00 +00:00
include_package_data=True,
data_files=get_data_files(),
2015-11-25 14:28:26 +00:00
cmdclass={'test': tests},
2014-05-21 11:43:21 +00:00
test_suite="unitest.py",
entry_points={"console_scripts": ["glances=glances:main"]},
2013-04-08 14:16:00 +00:00
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console :: Curses',
2017-01-07 09:09:27 +00:00
'Environment :: Web Environment',
'Framework :: Bottle',
2013-04-08 14:16:00 +00:00
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
2015-11-18 12:05:35 +00:00
'Programming Language :: Python :: 3.4',
2017-01-07 09:09:27 +00:00
'Programming Language :: Python :: 3.5',
2017-01-21 18:49:49 +00:00
'Programming Language :: Python :: 3.6',
2017-01-07 09:09:27 +00:00
'Topic :: System :: Monitoring'
2013-04-08 14:16:00 +00:00
]
2011-12-05 09:26:36 +00:00
)