2011-12-05 13:26:36 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2014-05-11 19:11:17 +04:00
|
|
|
import glob
|
2016-12-19 21:50:02 +03:00
|
|
|
import os
|
2016-08-26 16:36:54 +03:00
|
|
|
import re
|
2016-12-19 21:50:02 +03:00
|
|
|
import sys
|
|
|
|
from io import open
|
2011-12-05 13:26:36 +04:00
|
|
|
|
2015-11-25 17:28:26 +03:00
|
|
|
from setuptools import setup, Command
|
2015-01-05 13:33:15 +03:00
|
|
|
|
2016-08-26 16:36:54 +03:00
|
|
|
|
2016-12-19 21:50:02 +03:00
|
|
|
if sys.version_info < (2, 7) or (3, 0) <= sys.version_info < (3, 3):
|
|
|
|
print('Glances requires at least Python 2.7 or 3.3 to run.')
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
|
2016-08-26 16:36:54 +03:00
|
|
|
# Global functions
|
|
|
|
##################
|
|
|
|
|
2016-12-19 21:50:02 +03:00
|
|
|
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()
|
2016-08-26 16:36:54 +03:00
|
|
|
|
|
|
|
|
|
|
|
def get_data_files():
|
|
|
|
data_files = [
|
|
|
|
('share/doc/glances', ['AUTHORS', 'COPYING', 'NEWS', 'README.rst',
|
2017-01-07 12:09:27 +03:00
|
|
|
'CONTRIBUTING.md', 'conf/glances.conf']),
|
2016-08-26 16:36:54 +03:00
|
|
|
('share/man/man1', ['docs/man/glances.1'])
|
|
|
|
]
|
|
|
|
|
|
|
|
return data_files
|
|
|
|
|
|
|
|
|
2015-11-25 17:28:26 +03:00
|
|
|
class tests(Command):
|
|
|
|
user_options = []
|
|
|
|
|
|
|
|
def initialize_options(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def finalize_options(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
import subprocess
|
|
|
|
import sys
|
2015-11-25 17:47:59 +03:00
|
|
|
for t in glob.glob('unitest.py'):
|
2015-11-25 17:28:26 +03:00
|
|
|
ret = subprocess.call([sys.executable, t]) != 0
|
|
|
|
if ret != 0:
|
|
|
|
raise SystemExit(ret)
|
|
|
|
raise SystemExit(0)
|
2015-04-16 13:36:16 +03:00
|
|
|
|
2012-03-14 03:14:02 +04:00
|
|
|
|
2016-08-26 16:36:54 +03:00
|
|
|
# Setup !
|
2013-09-19 14:29:00 +04:00
|
|
|
|
2013-01-12 23:02:00 +04:00
|
|
|
setup(
|
2013-08-10 17:38:12 +04:00
|
|
|
name='Glances',
|
2016-12-19 21:50:02 +03:00
|
|
|
version=version,
|
2013-04-08 18:16:00 +04:00
|
|
|
description="A cross-platform curses-based monitoring tool",
|
2016-12-19 21:50:02 +03:00
|
|
|
long_description=long_description,
|
2013-01-12 23:02:00 +04:00
|
|
|
author='Nicolas Hennion',
|
|
|
|
author_email='nicolas@nicolargo.com',
|
2013-04-08 18:16:00 +04:00
|
|
|
url='https://github.com/nicolargo/glances',
|
2013-01-12 23:02:00 +04:00
|
|
|
license="LGPL",
|
|
|
|
keywords="cli curses monitoring system",
|
2016-12-26 21:00:00 +03:00
|
|
|
install_requires=['psutil>=2.0.0'],
|
2013-01-12 23:02:00 +04:00
|
|
|
extras_require={
|
2017-01-07 12:09:27 +03:00
|
|
|
'ACTION': ['pystache'],
|
2014-06-06 13:57:41 +04:00
|
|
|
'BATINFO': ['batinfo'],
|
2015-04-27 13:27:17 +03:00
|
|
|
'BROWSER': ['zeroconf>=0.17'],
|
2015-11-21 12:53:49 +03:00
|
|
|
'CPUINFO': ['py-cpuinfo'],
|
2017-01-07 12:09:27 +03:00
|
|
|
'CHART': ['matplotlib'],
|
|
|
|
'DOCKER': ['docker-py'],
|
|
|
|
'EXPORT': ['bernhard', 'cassandra-driver', 'couchdb', 'elasticsearch', 'influxdb>=1.0.0', 'pika', 'potsdb', 'pyzmq', 'statsd'],
|
2016-10-21 23:11:13 +03:00
|
|
|
'FOLDERS': ['scandir'],
|
2017-01-07 12:12:50 +03:00
|
|
|
'GPU': ['nvidia-ml-py'],
|
2017-01-07 12:09:27 +03:00
|
|
|
'IP': ['netifaces'],
|
|
|
|
'RAID': ['pymdstat'],
|
|
|
|
'SENSORS': ['py3sensors'],
|
|
|
|
'SNMP': ['pysnmp'],
|
|
|
|
'WEB': ['bottle', 'requests'],
|
2016-10-21 23:11:13 +03:00
|
|
|
'WIFI': ['wifi']
|
2013-01-12 23:02:00 +04:00
|
|
|
},
|
2013-04-08 18:16:00 +04:00
|
|
|
packages=['glances'],
|
2013-01-12 23:02:00 +04:00
|
|
|
include_package_data=True,
|
2014-05-07 18:59:59 +04:00
|
|
|
data_files=get_data_files(),
|
2015-11-25 17:28:26 +03:00
|
|
|
cmdclass={'test': tests},
|
2014-05-21 15:43:21 +04:00
|
|
|
test_suite="unitest.py",
|
2014-06-02 02:46:46 +04:00
|
|
|
entry_points={"console_scripts": ["glances=glances:main"]},
|
2013-04-08 18:16:00 +04:00
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 5 - Production/Stable',
|
|
|
|
'Environment :: Console :: Curses',
|
2017-01-07 12:09:27 +03:00
|
|
|
'Environment :: Web Environment',
|
|
|
|
'Framework :: Bottle',
|
2013-04-08 18:16:00 +04: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',
|
2014-05-11 19:11:17 +04:00
|
|
|
'Programming Language :: Python :: 3.3',
|
2015-11-18 15:05:35 +03:00
|
|
|
'Programming Language :: Python :: 3.4',
|
2017-01-07 12:09:27 +03:00
|
|
|
'Programming Language :: Python :: 3.5',
|
|
|
|
'Topic :: System :: Monitoring'
|
2013-04-08 18:16:00 +04:00
|
|
|
]
|
2011-12-05 13:26:36 +04:00
|
|
|
)
|