forked from aibor/marmoset
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
52 lines (46 loc) · 1.75 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
47
48
49
50
51
52
#!/usr/bin/env python3
"""Basic setup.py that describes the project."""
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def read(fname):
"""Read a file with absolute path, based on provided filename."""
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='marmoset',
version='0.7.1',
description='Simple HTTP API for managing stuff on libvirt hosts',
keywords='dhcp dhcpd ldap libvirt management vms virtual-machines',
author='https://github.com/virtapi/marmoset/graphs/contributors',
url='https://github.com/virtapi/marmoset',
packages=['marmoset'],
scripts=['marmoset.py'],
install_requires=['Flask>=0.10.1',
'Flask-RESTful>=0.3.5',
'ldap3>=1.0.4',
'libvirt-python>=1.3.1'],
tests_require=['nose>=1.3.7',
'mock>=1.3.0',
'testfixtures>=4.7.0',
'prospector[pyroma]'],
test_suite='nose.collector',
license='GNU Affero General Public License v3',
author_email='[email protected]',
zip_safe=False,
long_description=read('README.md'),
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: GNU Affero General Public License v3',
]
)