-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (39 loc) · 1.33 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 = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "laebelmaker"
version = "0.4.1"
description = "Generate traefik labels easily"
readme = "README.md"
authors = [{ name = "Ivan Bratović", email = "[email protected]" }]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Environment :: Console",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Internet",
"Topic :: Utilities",
"Topic :: System :: Systems Administration",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
]
keywords = ["traefik", "label", "generate"]
dependencies = [
"pyyaml>=6.0",
]
requires-python = ">=3.9"
[project.optional-dependencies]
dev = ["black", "pylint", "mypy", "types-PyYAML", "pre-commit", "docker", "pytest"]
docker = ["docker"]
[project.urls]
Homepage = "https://github.com/ivanbratovic/laebelmaker"
[project.scripts]
laebelmaker = "laebelmaker.cli:main"