glances/setup.py

53 lines
1.7 KiB
Python
Raw Normal View History

2011-12-05 13:26:36 +04:00
#!/usr/bin/env python
2013-02-14 18:41:51 +04:00
import os
import sys
import glob
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
2012-03-14 03:14:02 +04:00
data_files = [
('share/man/man1', ['man/glances.1']),
2013-02-22 23:55:00 +04:00
('share/doc/glances', ['AUTHORS',
2012-07-07 19:47:47 +04:00
'COPYING',
'NEWS',
2013-02-22 23:55:00 +04:00
'README',
2013-01-12 23:02:00 +04:00
'glances/conf/glances.conf']),
2013-02-14 18:41:51 +04:00
('share/doc/glances/doc', glob.glob('doc/*.png')),
2013-02-22 23:55:00 +04:00
('share/glances/css', glob.glob('glances/data/css/*.css')),
('share/glances/html', glob.glob('glances/data/html/*.html')),
('share/glances/img', glob.glob('glances/data/img/*.png')),
2012-03-14 03:14:02 +04:00
]
2012-07-07 19:47:47 +04:00
2013-02-14 18:41:51 +04:00
if hasattr(sys, 'real_prefix') or ('bsd' or 'darwin' in sys.platform):
etc_path = os.path.join(sys.prefix, 'etc', 'glances')
if not hasattr(sys, 'real_prefix') and 'linux' in sys.platform:
etc_path = os.path.join('/etc', 'glances')
data_files.append((etc_path, ['glances/conf/glances.conf']))
for mo in glob.glob('i18n/*/LC_MESSAGES/*.mo'):
data_files.append((os.path.dirname(mo).replace('i18n/', 'share/locale/'), [mo]))
2012-03-14 03:14:02 +04:00
2013-01-12 23:02:00 +04:00
setup(
name='Glances',
2013-03-24 01:38:44 +04:00
version='1.7a',
download_url='https://s3.amazonaws.com/glances/glances-1.7a.tar.gz',
2013-01-12 23:02:00 +04:00
url='https://github.com/nicolargo/glances',
description='CLI curses-based monitoring tool',
author='Nicolas Hennion',
author_email='nicolas@nicolargo.com',
license="LGPL",
keywords="cli curses monitoring system",
long_description=open('README').read(),
2013-02-21 20:51:00 +04:00
test_suite="glances.tests",
2013-01-12 23:02:00 +04:00
install_requires=['psutil>=0.4.1'],
packages=['glances'],
extras_require={
'HTML': ['jinja2>=2.0'],
'SENSORS': ['pysensors>=0.0.2'],
},
include_package_data=True,
data_files=data_files,
entry_points={"console_scripts": ["glances=glances.glances:main"]},
2011-12-05 13:26:36 +04:00
)