glances/setup.py

38 lines
1.1 KiB
Python
Raw Normal View History

2011-12-05 13:26:36 +04:00
#!/usr/bin/env python
2012-03-14 01:32:22 +04:00
from glob import glob
2012-03-14 03:14:02 +04:00
from os.path import dirname
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']),
('share/doc/glances', ['README',
'README-fr',
'COPYING',
'AUTHORS',
'ChangeLog',
'NEWS',
'screenshot.png']),
('share/doc/glances/doc', glob('doc/*.png')),
]
for mo in glob('i18n/*/LC_MESSAGES/*.mo'):
data_files.append((dirname(mo).replace('i18n/', 'share/locale/'), [mo]))
2012-03-14 01:32:22 +04:00
setup(name='Glances',
version='1.4b',
download_url='https://github.com/downloads/nicolargo/glances/glances-1.4b.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'],
include_package_data=True,
2012-03-14 03:14:02 +04:00
data_files=data_files,
2012-03-14 01:32:22 +04:00
entry_points={"console_scripts": ["glances = glances.glances:main"]},
2011-12-05 13:26:36 +04:00
)