glances/setup.py

82 lines
2.6 KiB
Python
Raw Normal View History

2011-12-05 09:26:36 +00:00
#!/usr/bin/env python
import glob
2013-02-14 14:41:51 +00:00
import sys
2011-12-05 09:26:36 +00:00
2012-03-13 21:32:22 +00:00
from setuptools import setup
2011-12-05 09:26:36 +00:00
if sys.version_info < (2, 6) or (3, 0) <= sys.version_info < (3, 3):
print('Glances requires at least Python 2.6 or 3.3 to run.')
sys.exit(1)
def get_data_files():
data_files = [
('share/doc/glances', ['AUTHORS', 'COPYING', 'NEWS', 'README.rst',
'conf/glances.conf', 'docs/glances-doc.html']),
('share/doc/glances/images', glob.glob('docs/images/*.png')),
('share/man/man1', ['man/glances.1'])
]
return data_files
2013-02-14 14:41:51 +00:00
def get_requires():
requires = ['psutil>=2.0.0']
if sys.platform.startswith('win'):
requires += ['colorconsole']
if sys.version_info == (2, 6):
requires += ['argparse', 'logutils']
2012-03-13 23:14:02 +00:00
return requires
2013-01-12 19:02:00 +00:00
setup(
2013-08-10 13:38:12 +00:00
name='Glances',
2015-10-10 09:25:51 +00:00
version='2.5.1',
2013-04-08 14:16:00 +00:00
description="A cross-platform curses-based monitoring tool",
long_description=open('README.rst').read(),
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',
2015-10-10 09:25:51 +00:00
# download_url='https://s3.amazonaws.com/glances/glances-2.5.1.tar.gz',
2013-01-12 19:02:00 +00:00
license="LGPL",
keywords="cli curses monitoring system",
install_requires=get_requires(),
2013-01-12 19:02:00 +00:00
extras_require={
'WEB': ['bottle'],
2014-03-13 12:13:13 +00:00
'SENSORS': ['py3sensors'],
2014-06-06 09:57:41 +00:00
'BATINFO': ['batinfo'],
2014-08-03 12:42:14 +00:00
'SNMP': ['pysnmp'],
'CHART': ['matplotlib'],
'BROWSER': ['zeroconf>=0.17'],
'IP': ['netifaces'],
2014-12-30 21:33:54 +00:00
'RAID': ['pymdstat'],
'DOCKER': ['docker-py'],
2015-09-20 05:44:27 +00:00
'EXPORT': ['influxdb>=1.0.0', 'potsdb' 'statsd', 'pika'],
'ACTION': ['pystache'],
'CPUINFO': ['py-cpuinfo']
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(),
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',
'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.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
2015-11-18 12:05:35 +00:00
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
2013-04-08 14:16:00 +00:00
]
2011-12-05 09:26:36 +00:00
)