-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
56 lines (51 loc) · 1.4 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
[tool.poetry]
name = "osia"
version = "0.2.0-alpha13"
description = "OpenShift infra automation"
authors = ["Miroslav Jaros <mirek@mijaros.cz>"]
maintainers = ["Matej Dujava <mdujava@redhat.com>"]
license = "Apache-2.0"
readme = 'README.md'
keywords = ["OpenShift", "OpenStack", "AWS", "automation"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]
[tool.poetry.scripts]
osia = 'osia.cli:main_cli'
[tool.poetry.dependencies]
beautifulsoup4 = "*"
boto3 = "*"
coloredlogs = "*"
dynaconf = {extras = ["yaml"], version = "*"}
distro = "*"
gitpython = "*"
jinja2 = "*"
openstacksdk = "*"
python = "^3.10"
semantic-version = "^2.10.0"
urllib3 = "*"
[tool.poetry.dev-dependencies]
boto3-stubs = "^1.35.39"
flake8 = "*"
ipython = "*"
mypy = "^1.11.2"
pylint = "*"
recommonmark = "*"
sphinx = "*"
sphinx-argparse = "*"
sphinx-rtd-theme = "*"
types-PyYAML = "*"
types-beautifulsoup4 = "*"
types-html5lib = "*"
types-requests = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"