-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
123 lines (116 loc) Β· 4.09 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
[tool.poetry]
name = "ansible-gas-station"
version = "2.1.0"
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.7.2,<4.0.0"
ansible-core = "^2.11.3"
docker = "^5.0.3"
lxml = "^4.9.1"
netaddr = "^0.8.0"
pexpect = "^4.8.0"
python-vagrant = "^0.5.15"
pywinrm = ">=0.3.0"
requests-credssp = "^2.0.0"
sentry-sdk = "^1.10.1"
urllib3 = "^1.26.12"
# CLI tools normally installed by pipx
ansible-lint = { version = "<5.0.0", optional = true }
ansibler = { version = "*", optional = true }
black = { version = "^21.10b0", optional = true }
blocklint = { version = "^0.2.3", optional = true }
flake8 = { version = "^4.0.1", optional = true }
mod-ansible-autodoc = { version = "*", optional = true }
pre-commit-hooks = { version = "^4.0.1", optional = true }
proselint = { version = "^0.12.0", optional = true }
toml-sort = { version = "^0.19.0", optional = true }
yamllint = { version = "^1.26.3", optional = true }
# Semantic extras
pip = { version = "^21.3.0", optional = true }
setuptools = { version = "^58.2.0", optional = true }
twine = { version = "^3.8.0", optional = true }
wheel = { version = "^0.37.1", optional = true }
[tool.poetry.dev-dependencies]
apache-libcloud = "^3.4.1"
gcloud = "^0.18.3"
junit-xml = "^1.9"
molecule = "^3.5.2"
molecule-docker = "^1.1.0"
molecule-gce = "^0.3.1"
molecule-vagrant = "^0.6.3"
pycrypto = "^2.6.1"
[tool.poetry.extras]
cli = [
"ansible-lint",
"ansibler",
"black",
"blocklint",
"flake8",
"mod-ansible-autodoc",
"pre-commit-hooks",
"proselint",
"toml-sort",
"yamllint"
]
semantic = [
"pip",
"setuptools",
"twine",
"wheel"
]
[tool.poetry.urls]
"Bug Tracker" = "https://gitlab.com/megabyte-labs/gas-station/-/issues"
"GitHub" = "https://github.com/megabyte-labs/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"