-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 831 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 831 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
from setuptools import setup
setup(
name='network-allocation-service',
version='0.2.3',
author='Javier Cacheiro',
author_email='bigdata-dev@cesga.es',
url='https://github.com/javicacheiro/network-allocation-service',
license='MIT',
description='REST service for network address allocation similar to DHCP',
long_description=open('README.rst').read(),
#py_modules=['consul'],
install_requires=['Flask', 'kvstore', 'requests', 'python-keyczar',
'gunicorn', 'coverage'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)