2011-12-05 13:26:36 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2014-05-11 19:11:17 +04:00
|
|
|
import glob
|
2013-02-14 18:41:51 +04:00
|
|
|
import os
|
|
|
|
import sys
|
2011-12-05 13:26:36 +04:00
|
|
|
|
2012-03-14 01:32:22 +04:00
|
|
|
from setuptools import setup
|
2011-12-05 13:26:36 +04:00
|
|
|
|
2014-11-29 13:15:08 +03:00
|
|
|
|
2014-05-07 18:59:59 +04:00
|
|
|
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'])
|
|
|
|
]
|
|
|
|
|
2014-11-29 13:15:08 +03:00
|
|
|
if os.name == 'posix' and os.getuid() == 0: # Unix-like + root privileges
|
|
|
|
if 'bsd' in sys.platform:
|
|
|
|
conf_path = os.path.join(sys.prefix, 'etc', 'glances')
|
|
|
|
elif 'linux' in sys.platform:
|
|
|
|
conf_path = os.path.join('/etc', 'glances')
|
|
|
|
elif 'darwin' in sys.platform:
|
|
|
|
conf_path = os.path.join('/usr/local', 'etc', 'glances')
|
|
|
|
elif hasattr(sys, 'real_prefix'): # virtualenv
|
2014-05-07 18:59:59 +04:00
|
|
|
conf_path = os.path.join(sys.prefix, 'etc', 'glances')
|
2014-11-29 13:15:08 +03:00
|
|
|
elif 'win32' in sys.platform: # windows
|
2014-05-07 18:59:59 +04:00
|
|
|
conf_path = os.path.join(os.environ.get('APPDATA'), 'glances')
|
2014-11-29 13:15:08 +03:00
|
|
|
else: # Unix-like + per-user install
|
|
|
|
conf_path = os.path.join('etc', 'glances')
|
|
|
|
|
2014-05-07 18:59:59 +04:00
|
|
|
data_files.append((conf_path, ['conf/glances.conf']))
|
|
|
|
|
|
|
|
for mo in glob.glob('i18n/*/LC_MESSAGES/*.mo'):
|
2014-11-29 13:15:08 +03:00
|
|
|
data_files.append(
|
|
|
|
(os.path.dirname(mo).replace('i18n/', 'share/locale/'), [mo]))
|
2014-05-07 18:59:59 +04:00
|
|
|
|
|
|
|
return data_files
|
2013-02-14 18:41:51 +04:00
|
|
|
|
2014-11-29 13:15:08 +03:00
|
|
|
|
2014-05-07 18:59:59 +04:00
|
|
|
def get_requires():
|
2014-04-13 23:48:58 +04:00
|
|
|
requires = ['psutil>=2.0.0']
|
2014-05-07 18:59:59 +04:00
|
|
|
if sys.platform.startswith('win'):
|
|
|
|
requires += ['colorconsole']
|
|
|
|
if sys.version_info < (2, 7):
|
|
|
|
requires += ['argparse']
|
2012-03-14 03:14:02 +04:00
|
|
|
|
2014-05-07 18:59:59 +04:00
|
|
|
return requires
|
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',
|
2014-12-14 00:17:05 +03:00
|
|
|
version='2.2',
|
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',
|
2014-12-14 00:17:05 +03:00
|
|
|
# download_url='https://s3.amazonaws.com/glances/glances-2.2.tar.gz',
|
2013-01-12 23:02:00 +04:00
|
|
|
license="LGPL",
|
|
|
|
keywords="cli curses monitoring system",
|
2014-05-07 18:59:59 +04:00
|
|
|
install_requires=get_requires(),
|
2013-01-12 23:02:00 +04:00
|
|
|
extras_require={
|
2014-04-13 23:48:58 +04:00
|
|
|
'WEB': ['bottle'],
|
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'],
|
2014-12-04 12:49:49 +03:00
|
|
|
'CHART': ['matplotlib'],
|
2014-12-22 00:48:30 +03:00
|
|
|
'BROWSER': ['zeroconf>=0.16', 'netifaces'],
|
2014-12-31 00:33:54 +03:00
|
|
|
'RAID': ['pymdstat'],
|
2015-01-03 01:23:47 +03:00
|
|
|
'EXPORT': ['influxdb', 'statsd'],
|
|
|
|
'ACTION': ['pystache']
|
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(),
|
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',
|
|
|
|
'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',
|
2014-05-11 19:11:17 +04:00
|
|
|
'Programming Language :: Python :: 3.3',
|
|
|
|
'Programming Language :: Python :: 3.4'
|
2013-04-08 18:16:00 +04:00
|
|
|
]
|
2011-12-05 13:26:36 +04:00
|
|
|
)
|