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
|
|
|
|
2023-08-19 12:06:32 +03:00
|
|
|
if sys.version_info < (3, 8):
|
|
|
|
print('Glances requires at least Python 3.8 to run.')
|
2016-12-19 21:50:02 +03:00
|
|
|
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 = [
|
2019-07-09 22:31:05 +03:00
|
|
|
('share/doc/glances', ['AUTHORS', 'COPYING', 'NEWS.rst', '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
|
|
|
|
|
|
|
|
|
2017-01-21 20:08:16 +03:00
|
|
|
def get_install_requires():
|
2023-01-14 23:02:19 +03:00
|
|
|
requires = [
|
|
|
|
'psutil>=5.6.7',
|
|
|
|
'defusedxml',
|
|
|
|
'packaging',
|
2023-05-16 11:51:17 +03:00
|
|
|
'ujson>=5.4.0',
|
2023-01-14 23:02:19 +03:00
|
|
|
]
|
2017-01-21 20:08:16 +03:00
|
|
|
if sys.platform.startswith('win'):
|
2023-11-26 12:02:30 +03:00
|
|
|
requires.append('fastapi')
|
|
|
|
requires.append('uvicorn')
|
2023-11-27 00:40:36 +03:00
|
|
|
requires.append('orjson')
|
|
|
|
requires.append('jinja2')
|
2018-11-04 12:18:51 +03:00
|
|
|
requires.append('requests')
|
2017-01-21 20:08:16 +03:00
|
|
|
|
|
|
|
return requires
|
|
|
|
|
|
|
|
|
2019-01-20 12:56:30 +03:00
|
|
|
def get_install_extras_require():
|
|
|
|
extras_require = {
|
2021-02-28 12:19:33 +03:00
|
|
|
'action': ['chevron'],
|
2021-08-28 11:23:19 +03:00
|
|
|
'browser': ['zeroconf>=0.19.1'],
|
2019-01-20 12:56:30 +03:00
|
|
|
'cloud': ['requests'],
|
2023-05-16 11:31:06 +03:00
|
|
|
'containers': ['docker>=6.1.1', 'python-dateutil', 'six', 'podman', 'packaging'],
|
2023-10-08 11:10:13 +03:00
|
|
|
'export': ['bernhard', 'cassandra-driver', 'elasticsearch', 'graphitesender',
|
|
|
|
'ibmcloudant', 'influxdb>=1.0.0', 'influxdb-client', 'pymongo',
|
2021-08-28 11:23:19 +03:00
|
|
|
'kafka-python', 'pika', 'paho-mqtt', 'potsdb', 'prometheus_client',
|
|
|
|
'pyzmq', 'statsd'],
|
2024-03-03 16:40:43 +03:00
|
|
|
'gpu': ['nvidia-ml-py'],
|
2019-01-20 12:56:30 +03:00
|
|
|
'graph': ['pygal'],
|
|
|
|
'ip': ['netifaces'],
|
|
|
|
'raid': ['pymdstat'],
|
|
|
|
'smart': ['pySMART.smartx'],
|
|
|
|
'snmp': ['pysnmp'],
|
2019-04-18 10:34:02 +03:00
|
|
|
'sparklines': ['sparklines'],
|
2023-11-27 00:40:36 +03:00
|
|
|
'web': ['fastapi', 'uvicorn', 'jinja2', 'orjson', 'requests'],
|
2019-01-20 12:56:30 +03:00
|
|
|
'wifi': ['wifi']
|
|
|
|
}
|
2021-08-14 12:24:10 +03:00
|
|
|
if sys.platform.startswith('linux'):
|
|
|
|
extras_require['sensors'] = ['batinfo']
|
2021-07-09 11:03:37 +03:00
|
|
|
|
2019-01-20 12:56:30 +03:00
|
|
|
# Add automatically the 'all' target
|
|
|
|
extras_require.update({'all': [i[0] for i in extras_require.values()]})
|
|
|
|
|
|
|
|
return extras_require
|
|
|
|
|
|
|
|
|
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',
|
2017-01-21 21:39:34 +03:00
|
|
|
license='LGPLv3',
|
2013-01-12 23:02:00 +04:00
|
|
|
keywords="cli curses monitoring system",
|
2023-05-16 11:51:17 +03:00
|
|
|
python_requires=">=3.8",
|
2017-01-21 20:08:16 +03:00
|
|
|
install_requires=get_install_requires(),
|
2019-01-20 12:56:30 +03:00
|
|
|
extras_require=get_install_extras_require(),
|
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',
|
2023-11-26 12:02:30 +03:00
|
|
|
'Framework :: FastAPI',
|
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 :: 3',
|
2020-03-26 01:55:12 +03:00
|
|
|
'Programming Language :: Python :: 3.8',
|
2021-01-23 13:07:36 +03:00
|
|
|
'Programming Language :: Python :: 3.9',
|
2021-11-21 13:29:02 +03:00
|
|
|
'Programming Language :: Python :: 3.10',
|
2022-12-12 13:00:52 +03:00
|
|
|
'Programming Language :: Python :: 3.11',
|
2023-10-07 09:42:22 +03:00
|
|
|
'Programming Language :: Python :: 3.12',
|
2017-01-07 12:09:27 +03:00
|
|
|
'Topic :: System :: Monitoring'
|
2013-04-08 18:16:00 +04:00
|
|
|
]
|
2011-12-05 13:26:36 +04:00
|
|
|
)
|