-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
51 lines (48 loc) · 1.35 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
[project]
name = "pkr"
version = "1.4.31"
description = "Template engine for deploying docker containers."
authors = [ { name = "Altair Engineering", email = "[email protected]" } ]
license = {file = "LICENSE.md"}
readme = "README.md"
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Testing",
"License :: OSI Approved :: Apache Software License",
]
dependencies = [
"docker==7.1.0",
"importlib-metadata>=0.12",
"ipaddress==1.0.17",
"jinja2",
"jinja2-ansible-filters==1.3.2",
"kubernetes>=25.0.0",
"netifaces==0.11.0",
"passlib>=1.7.1",
"pybase64==1.3.2",
"pycryptodome==3.19.1",
"python-on-whales==0.71.0",
"tenacity>=7.0.0",
"bcrypt<=4.0.1",
"pydantic<2",
"requests==2.32.2",
"urllib3==1.26.19",
]
[project.optional-dependencies]
dev = [
"bandit==1.7.4",
"mock==2.0.0",
"pytest==7.4.0",
"tox==4.11.3",
"wrapt==1.14.0",
]
[project.scripts]
pkr = "pkr.__main__:main"
[project.entry-points.'pkr_extensions']
auto-volume = "pkr.ext.auto_volume:AutoVolume"
basic-template = "pkr.ext.basic_template:BasicTemplate"