-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
executable file
·50 lines (45 loc) · 1.33 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
#!/usr/bin/env python
from setuptools import setup
install_requires = [
"requests>=2.6.0",
"python-waldur-client>=0.4.3",
"urllib3<2.0.0",
]
tests_requires = [
"responses>=0.5.0",
]
setup(
name="ansible-waldur-module",
version="1.1.2",
author="OpenNode Team",
author_email="info@opennodecloud.com",
url="https://waldur.com",
license="MIT",
description="Ansible module for the Waldur API.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
py_modules=[
"waldur_client",
"waldur_marketplace",
"waldur_marketplace_os_get_instance",
"waldur_marketplace_os_instance",
"waldur_marketplace_os_volume",
"waldur_os_floating_ip",
"waldur_os_instance_volume",
"waldur_os_security_group",
"waldur_os_security_group_gather_facts",
"waldur_os_snapshot",
"waldur_batch_allocation",
"waldur_batch_offering",
"waldur_os_subnet",
"waldur_os_subnet_gather_facts",
],
install_requires=install_requires,
tests_require=tests_requires,
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)