summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicolargo <nicolas@nicolargo.com>2017-01-07 10:09:27 +0100
committernicolargo <nicolas@nicolargo.com>2017-01-07 10:09:27 +0100
commit09ba54c4589635ea15a70b7013c681ea06535748 (patch)
tree1b5b9caa39973592fbbe1d298430dc96a933c21f
parentfa705e08e8b396dd6001bd93c5b3c2fc97e92b3a (diff)
Update setup file
-rw-r--r--MANIFEST.in1
-rwxr-xr-xsetup.py26
2 files changed, 16 insertions, 11 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
index 049f1626..28faa4e6 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,4 +1,5 @@
include AUTHORS
+include CONTRIBUTING.md
include COPYING
include NEWS
include README.rst
diff --git a/setup.py b/setup.py
index 2e2bf0b0..9401e1c9 100755
--- a/setup.py
+++ b/setup.py
@@ -30,7 +30,7 @@ with open('README.rst', encoding='utf-8') as f:
def get_data_files():
data_files = [
('share/doc/glances', ['AUTHORS', 'COPYING', 'NEWS', 'README.rst',
- 'conf/glances.conf']),
+ 'CONTRIBUTING.md', 'conf/glances.conf']),
('share/man/man1', ['docs/man/glances.1'])
]
@@ -70,19 +70,20 @@ setup(
keywords="cli curses monitoring system",
install_requires=['psutil>=2.0.0'],
extras_require={
- 'WEB': ['bottle', 'requests'],
- 'SENSORS': ['py3sensors'],
+ 'ACTION': ['pystache'],
'BATINFO': ['batinfo'],
- 'SNMP': ['pysnmp'],
- 'CHART': ['matplotlib'],
'BROWSER': ['zeroconf>=0.17'],
- 'IP': ['netifaces'],
- 'RAID': ['pymdstat'],
- 'DOCKER': ['docker-py'],
- 'EXPORT': ['influxdb>=1.0.0', 'elasticsearch', 'potsdb' 'statsd', 'pika', 'bernhard', 'cassandra-driver'],
- 'ACTION': ['pystache'],
'CPUINFO': ['py-cpuinfo'],
+ 'CHART': ['matplotlib'],
+ 'DOCKER': ['docker-py'],
+ 'EXPORT': ['bernhard', 'cassandra-driver', 'couchdb', 'elasticsearch', 'influxdb>=1.0.0', 'pika', 'potsdb', 'pyzmq', 'statsd'],
'FOLDERS': ['scandir'],
+ 'GPU': ['nvidia-ml-py']
+ 'IP': ['netifaces'],
+ 'RAID': ['pymdstat'],
+ 'SENSORS': ['py3sensors'],
+ 'SNMP': ['pysnmp'],
+ 'WEB': ['bottle', 'requests'],
'WIFI': ['wifi']
},
packages=['glances'],
@@ -94,6 +95,8 @@ setup(
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console :: Curses',
+ 'Environment :: Web Environment',
+ 'Framework :: Bottle',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: System Administrators',
@@ -104,6 +107,7 @@ setup(
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
- 'Programming Language :: Python :: 3.5'
+ 'Programming Language :: Python :: 3.5',
+ 'Topic :: System :: Monitoring'
]
)