-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
43 lines (40 loc) · 1.17 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "tempor"
authors = [
{name = "Wh1t3Fox", email = "[email protected]"}
]
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
requires-python = ">=3.6"
dynamic = ["version", "description"]
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Environment :: Console",
]
dependencies = [
"ansible==7.3.0",
"appdirs==1.4.4",
"ansible_runner==2.2.0",
"jsonschema==4.5.1",
"python-terraform==0.10.1",
"rich==12.4.1",
"ssh-config==0.1.1",
"PyYAML==6.0",
"boto3==1.23.1",
"requests==2.31.0",
"google-api-python-client==2.47.0"
]
[project.urls]
Documentation = "https://github.com/Wh1t3Fox/tempor"
Source = "https://github.com/Wh1t3Fox/tempor"
[project.scripts]
tempor = "tempor.__main__:main"