-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
88 lines (84 loc) · 3.16 KB
/
pyproject.toml
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
82
83
84
85
86
87
88
[tool.poetry]
name = "ansible-gas-station"
version = "0.0.1"
description = "An Ansible playbook that provisions your network with software from GitHub Awesome lists, developed with disaster recovery in mind ⛽🔥🤤"
authors = ["Brian Zalewski <brian@megabyte.space>"]
license = "MIT"
readme = "README.md"
homepage = "https://megabyte.space"
documentation = "https://megabyte.space/docs/ansible/playbook"
keywords = ["ansible", "ansible-playbook", "ansible-role", "archlinux", "centos", "debian", "doctor", "fedora", "install", "installdoc", "installdoctor", "macos", "mblabs", "megabytelabs", "molecule", "playbook", "professormanhattan", "role", "ubuntu", "washingtondc", "windows"]
include = ["CHANGELOG.md", "LICENSE"]
classifiers = [
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: MacOS X",
"Environment :: Web Environment",
"Framework :: Ansible",
"Framework :: Flake8",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: JavaScript",
"Programming Language :: Other Scripting Engines",
"Programming Language :: Other",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python",
"Programming Language :: Unix Shell",
"Topic :: Desktop Environment",
"Topic :: Documentation",
"Topic :: Internet",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Documentation",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Topic :: System :: Installation/Setup",
"Topic :: Utilities"
]
[tool.poetry.dependencies]
python = ">=3.10.0,<4.0.0"
ansible = "^4.8.0"
docker = "^5.0.3"
python-vagrant = "^0.5.15"
pywinrm = ">=0.3.0"
[tool.poetry.dev-dependencies]
ansible-lint = "<5.0.0"
ansibler = "^0.1.14"
apache-libcloud = "^3.4.1"
black = "^21.10b0"
blocklint = "^0.2.3"
flake8 = "^4.0.1"
gcloud = "^0.18.3"
junit-xml = "^1.9"
mod-ansible-autodoc = "^0.5.7"
molecule = "^3.5.2"
molecule-docker = "^1.1.0"
molecule-gce = "^0.3.1"
molecule-vagrant = "^0.6.3"
pre-commit-hooks = "^4.0.1"
proselint = "^0.12.0"
pycrypto = "^2.6.1"
yamllint = "^1.26.3"
[tool.poetry.urls]
"Bug Tracker" = "https://gitlab.com/megabyte-labs/gas-station/-/issues"
"GitHub" = "https://github.com/ProfessorManhattan/Gas-Station"
"GitLab" = "https://gitlab.com/megabyte-labs/gas-station"
"Open Collective" = "https://opencollective.com/megabytelabs"
"Patreon" = "https://www.patreon.com/ProfessorManhattan"
"Give Directly" = "https://givedirectly.org"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"