forked from perfsonar/esmond
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (43 loc) · 1.61 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
44
45
46
#!/usr/bin/env python
"""Setup file for esmond."""
from distutils.core import setup
setup(
name='esmond',
version='0.9b1',
description='ESnet Monitoring Daemon',
author='Jon M. Dugan',
author_email='[email protected]',
url='http://software.es.net/esmond/',
packages=['esmond', 'esmond.api', 'esmond.api.client', 'esmond.admin'],
install_requires=[
'Django==1.8.5', 'web.py',
'djangorestframework==3.1.3', 'drf-extensions==0.2.7',
'djangorestframework-filters==0.3.0', 'python-memcached==1.57',
'pycassa==1.11.1', 'psycopg2==2.6.1', 'python-mimeparse==0.1.4',
'requests', 'nagiosplugin==1.2.2', 'pandokia==1.3.10'
],
entry_points={
'console_scripts': [
'espolld = esmond.poll:espolld',
'espoll = esmond.poll:espoll',
'espersistd = esmond.persist:espersistd',
'espersistq = esmond.persist:espersistq',
'esfetch = esmond.fetch:esfetch',
'esdbd = esmond.newdb:esdb_standalone',
'gen_ma_storefile = esmond.perfsonar:gen_ma_storefile',
'esmanage = esmond.manage:esmanage',
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Telecommunications Industry',
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Programming Language :: Python :: 2',
'Topic :: Internet',
'Topic :: System :: Networking',
'Topic :: Software Development :: Libraries',
],
)