glances/setup.py

43 lines
1.4 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
'README-fr',
'COPYING',
'AUTHORS',
'NEWS',
'screenshot.png']),
2012-03-13 23:14:02 +00:00
('share/doc/glances/doc', glob('doc/*.png')),
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]))
2012-03-13 21:32:22 +00:00
setup(name='Glances',
2012-07-07 15:47:47 +00:00
version='1.4',
download_url='https://github.com/downloads/nicolargo/glances/glances-1.4.tar.gz',
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'],},
include_package_data=True,
data_files=data_files,
entry_points={"console_scripts": ["glances = glances.glances:main"]},
2011-12-05 09:26:36 +00:00
)