-
Notifications
You must be signed in to change notification settings - Fork 20
/
pyproject.toml
71 lines (64 loc) · 2.08 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
68
69
70
71
[build-system]
# Minimum requirements for the build system to execute.
requires = ["setuptools", "wheel"] # PEP 508 specifications.
build-backend = "setuptools.build_meta"
[project]
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
# the only field required to be statically defined
name = "OwnCA"
dynamic = ["version"]
description = "Python Own Certificate Authority"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "Apache 2.0"}
keywords = ["ownca", "Certificate Authority", "CA", "certificates"]
authors = [
{email = "kairo@dearaujo.nl"},
{name = "Kairo de Araujo"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"cryptography<35.0.0,>=3.4.6",
"voluptuous>=0.11.7",
]
[project.optional-dependencies]
dev = [
"pytest",
"coverage==5.1",
"tox",
"flake8",
"codecov",
"sphinx",
"sphinx-rtd-theme",
"twine",
"mypy",
"isort",
"black==21.12b0",
"pre-commit",
]
[project.urls]
documentation = "https://ownca.readthedocs.io"
repository = "https://github.com/OwnCA/ownca"
# https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html#setuptools-specific-configuration
[tool.setuptools]
zip-safe = false
include-package-data = true
license-files = ["LICENSE"]
[tool.setuptools.packages.find]
include = ["ownca*"] # package names should match these glob patterns (["*"] by default)
# files excluded in .whl but still there in .tar.gz
exclude = ["tests*"] # exclude packages matching these glob patterns (empty by default)
[tool.setuptools.dynamic]
version = {attr = "ownca.__version__.__version__"}