glances/setup.py

47 lines
1.5 KiB
Python
Raw Normal View History

2011-12-05 09:26:36 +00:00
#!/usr/bin/env python
2012-03-13 21:32:22 +00:00
from glob import glob
2012-03-13 23:14:02 +00:00
from os.path import dirname
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
2012-03-13 23:14:02 +00:00
data_files = [
('share/man/man1', ['man/glances.1']),
('share/doc/glances', ['README',
2012-07-07 15:47:47 +00:00
'COPYING',
'AUTHORS',
'NEWS',
2013-01-12 19:02:00 +00:00
'screenshot.png',
'glances/conf/glances.conf']),
2012-03-13 23:14:02 +00:00
('share/doc/glances/doc', glob('doc/*.png')),
2013-01-12 19:02:00 +00:00
('etc/glances', ['glances/conf/glances.conf']),
2012-07-07 15:47:47 +00:00
('share/glances/html', glob('glances/html/*.html')),
('share/glances/css', glob('glances/css/*.css')),
('share/glances/img', glob('glances/img/*.png')),
2012-03-13 23:14:02 +00:00
]
2012-07-07 15:47:47 +00:00
2012-03-13 23:14:02 +00:00
for mo in glob('i18n/*/LC_MESSAGES/*.mo'):
data_files.append((dirname(mo).replace('i18n/', 'share/locale/'), [mo]))
2013-01-12 19:02:00 +00:00
setup(
name='Glances',
2013-01-26 10:45:07 +00:00
version='1.6',
download_url='https://s3.amazonaws.com/glances/glances-1.6.tar.gz',
2013-01-12 19:02:00 +00: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(),
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 09:26:36 +00:00
)