glances/setup.py

119 lines
3.3 KiB
Python
Raw Normal View History

2011-12-05 13:26:36 +04:00
#!/usr/bin/env python
import glob
2013-02-14 18:41:51 +04:00
import sys
import re
2011-12-05 13:26:36 +04:00
2015-11-25 17:28:26 +03:00
from setuptools import setup, Command
# Global functions
##################
def get_version():
"""Get version inside the __init__.py file"""
init_file = open("glances/__init__.py").read()
reg_version = r"^__version__ = ['\"]([^'\"]*)['\"]"
find_version = re.search(reg_version, init_file, re.M)
if find_version:
return find_version.group(1)
else:
print("Can not retreive Glances version in the glances/__init__.py file.")
sys.exit(1)
def get_data_files():
data_files = [
('share/doc/glances', ['AUTHORS', 'COPYING', 'NEWS', 'README.rst',
'conf/glances.conf']),
('share/man/man1', ['docs/man/glances.1'])
]
return data_files
def get_requires():
requires = ['psutil>=2.0.0']
return requires
2016-03-13 18:57:16 +03:00
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
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)
# Global vars
#############
2016-03-13 18:57:16 +03:00
glances_version = get_version()
if sys.version_info < (2, 7) or (3, 0) <= sys.version_info < (3, 3):
print('Glances {0} require at least Python 2.7 or 3.3 to run.'.format(glances_version))
print('Please install Glances 2.6.2 on your system.')
sys.exit(1)
2012-03-14 03:14:02 +04:00
# Setup !
2013-01-12 23:02:00 +04:00
setup(
2013-08-10 17:38:12 +04:00
name='Glances',
version=glances_version,
2013-04-08 18:16:00 +04:00
description="A cross-platform curses-based monitoring tool",
long_description=open('README.rst').read(),
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",
install_requires=get_requires(),
2013-01-12 23:02:00 +04:00
extras_require={
'WEB': ['bottle', 'requests'],
2014-03-13 16:13:13 +04:00
'SENSORS': ['py3sensors'],
2014-06-06 13:57:41 +04:00
'BATINFO': ['batinfo'],
2014-08-03 16:42:14 +04:00
'SNMP': ['pysnmp'],
'CHART': ['matplotlib'],
'BROWSER': ['zeroconf>=0.17'],
'IP': ['netifaces'],
2014-12-31 00:33:54 +03:00
'RAID': ['pymdstat'],
'DOCKER': ['docker-py'],
2016-09-02 11:42:03 +03:00
'EXPORT': ['influxdb>=1.0.0', 'elasticsearch', 'potsdb' 'statsd', 'pika', 'bernhard', 'cassandra'],
'ACTION': ['pystache'],
2015-11-21 12:53:49 +03:00
'CPUINFO': ['py-cpuinfo'],
'FOLDERS': ['scandir']
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,
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",
entry_points={"console_scripts": ["glances=glances:main"]},
2013-04-08 18:16:00 +04: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.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
2015-11-18 15:05:35 +03:00
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
2013-04-08 18:16:00 +04:00
]
2011-12-05 13:26:36 +04:00
)