-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (38 loc) · 1.11 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import sys
with open('README.rst') as f:
description = f.read()
setup(
name='lymph-top',
url='http://github.com/mouadino/lymph-top/',
version='0.1.0',
packages=find_packages(),
license=u'Apache License (2.0)',
author=u'Mouad Benchchaoui, Jacques Rott',
maintainer=u'Mouad Benchchaoui',
maintainer_email=u'[email protected]',
keywords='lymph top monitoring metrics',
long_description=description,
include_package_data=True,
install_requires=[
'lymph',
'blessed',
'hurry.filesize',
],
entry_points={
'lymph.cli': [
'top = lymph_top.cli:TopCommand'
],
},
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Environment :: Console',
'License :: OSI Approved :: Apache Software License',
'Framework :: Lymph',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3'
]
)