-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
81 lines (75 loc) · 2.73 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
from __future__ import annotations
from setuptools import find_packages, setup
with open("README.md", encoding="utf-8") as readme_file:
readme = readme_file.read()
version_vars = {}
with open("molecule_hetznercloud/_version.py", encoding="utf-8") as fp:
exec(fp.read(), version_vars)
setup(
name="molecule-hetznercloud",
version=version_vars["__version__"],
keywords="ansible molecule driver hcloud hetzner cloud testing",
description="Molecule driver for Hetzner Cloud",
long_description=readme,
long_description_content_type="text/markdown",
author="Hetzner Cloud GmbH",
author_email="[email protected]",
url="https://github.com/hetznercloud/hcloud-python",
project_urls={
"Bug Tracker": "https://github.com/ansible-community/molecule-hetznercloud/issues",
"Documentation": "https://github.com/ansible-community/molecule-hetznercloud#readme",
"Changelog": "https://github.com/ansible-community/molecule-hetznercloud/blob/main/CHANGELOG.md",
"Source Code": "https://github.com/ansible-community/molecule-hetznercloud",
},
license="LGPL",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
],
python_requires=">=3.10",
install_requires=[
"molecule>=5.0.0,<24.13",
# Dependencies for the hetzner.hcloud collection
"python-dateutil>=2.7.5",
"requests>=2.20",
# Dependencies for the ansible.utils collection (ansible.utils.ipaddr)
"netaddr",
],
extras_require={
"test": [
"tox>=4.11.3,<5.0",
"pytest-xdist>=3.3.1,<4.0",
"pytest>=8.3.2,<8.4",
"pytest-ansible>=24.9,<24.10",
"pytest-cov>=6,<6.1",
],
},
packages=find_packages(exclude=["tests*"]),
package_data={
"": [
"**/*.json",
"**/*.py",
"**/*.rst",
"**/*.yml",
]
},
include_package_data=True,
zip_safe=False,
entry_points={
"molecule.driver": [
"molecule_hetznercloud=molecule_hetznercloud.driver:HetznerCloud",
]
},
)