-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
67 lines (61 loc) · 1.54 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
[project]
name = "mtls"
dynamic = [
"entry-points",
"version",
]
authors = [
{ name="Danny Grove", email="[email protected]" }
]
description = "A short-lived certificate tool based on the Zero Trust network mode"
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Internet",
"Topic :: Security :: Cryptography",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
]
[project.scripts]
mtls = "mtls.cli:cli"
[project.urls]
Homepage = "https://github.com/drGrove/mtls-cli"
Source = "https://github.com/drGrove/mtls-cli"
Tracker = "https://github.com/drGrove/mtls-cli/issues"
[build-system]
requires = [
"setuptools==62.1.0",
"wheel==0.37.1",
"setuptools_scm==6.4.2",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "src/mtls/__version__.py"
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''