-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
65 lines (57 loc) · 1.93 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
# https://pip.pypa.io/en/stable/reference/build-system/pyproject-toml/
[build-system]
# PEP 518 https://www.python.org/dev/peps/pep-0518/
# https://discuss.python.org/t/help-testing-experimental-features-in-setuptools/13821
requires = [
"setuptools>=64",
"wheel", # for bdist package distribution
"setuptools_scm>=6.4", # for automated versioning
"pyyaml",
"uuid",
"requests",
]
# PEP 517 https://peps.python.org/pep-0517/
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
# include = []
# exclude = ["tests"]
namespaces = true
[tool.setuptools_scm]
write_to = "src/aitube_clap/_version.py"
# PEP 621 https://peps.python.org/pep-0621/
[project]
name = "aitube_clap"
# version = "0.0.0"
# for automated versioning by pypa/setuptools_scm. see https://peps.python.org/pep-0621/#dynamic
dynamic = ["version"]
description = "collection of helpers to manipulate .clap files"
authors = [{ name = "jbilcke" }, { email = "[email protected]" }]
maintainers = [{ name = "jbilcke" }, { email = "[email protected]" }]
readme = "README.md"
license = { file = "LICENSE.txt" }
requires-python = ">=3.7"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
]
keywords = ["package", "setuptools"]
dependencies = ["requests"]
[project.optional-dependencies]
dev = ["pytest==5.0.0", "pytest-cov[all]", "mypy==0.910", "black==21.10b0"]
[project.urls]
Homepage = "https://github.com/jbilcke-hf/py-aitube-clap"
documentation = "https://github.com/jbilcke-hf-hf/py-aitube-clap"
repository = "https://github.com/denkiwakame/py-aitube-clap"
changelog = "https://github.com/jbilcke-hf/py-aitube-clap/blob/main/CHANGELOG.md"
[tool.black]
target-version = ['py39']
line-length = 120
[tool.mypy]
python_version = "3.9"
no_strict_optional = true
ignore_missing_imports = true
check_untyped_defs = true