-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (45 loc) · 1.88 KB
/
pyproject.toml
File metadata and controls
54 lines (45 loc) · 1.88 KB
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
[build-system]
requires = ["setuptools", "wheel", "build"]
build-backend = "setuptools.build_meta"
[project]
name = "python-clu"
description = "Python-CLU: Common Lightweight Utilities"
readme = "README.md"
license = "LicenseRef-CLU-MIT"
license-files = ["LICENSE.txt"]
keywords = ["testing", "command", "command-line",
"utilities", "modules", "REPL", "tools"]
dynamic = ['classifiers', 'dependencies', 'optional-dependencies', 'version']
[[project.authors]]
name = "Alexander Böhn"
email = "fish2000@gmail.com"
[[project.maintainers]]
name = "Alexander Böhn"
email = "fish2000@gmail.com"
[project.scripts]
clu-version = 'clu.repl.cli.print_version:print_version_command'
clu-ansidocs = 'clu.repl.cli.ansidocs:ansidocs_command'
clu-boilerplate = 'clu.repl.cli.boilerplate:boilerplate_command'
clu-boilercopy = 'clu.repl.cli.boilerplate_copy:boilerplate_copy_command'
[project.entry-points.pytest11]
clu-testing = 'clu.testing.pytest'
[project.urls]
Homepage = "https://github.com/fish2000/CLU"
Repository = "https://github.com/fish2000/CLU"
Documentation = "https://github.com/fish2000/CLU/blob/master/README.md"
Source = "https://github.com/fish2000/CLU"
Tracker = "https://github.com/fish2000/CLU/issues"
Changelog = "https://github.com/fish2000/CLU/blob/master/CHANGELOG.md"
Download = "https://pypi.org/project/python-clu/"
License = "https://github.com/fish2000/CLU/blob/master/LICENSE.txt"
# License = "https://raw.githubusercontent.com/fish2000/CLU/refs/heads/master/LICENSE.txt"
[tool.setuptools.dynamic]
classifiers = { file = "CLASSIFIERS.txt" }
dependencies = { file = "requirements/install.txt" }
optional-dependencies = { all = { file = "requirements/nox/tests.txt" } }
version = { attr = "clu.__version__" }
[tool.setuptools.packages.find]
where = ["."]
include = ["clu*", "*.jpg", "*.jpeg", "*.txt", "*.conf", "*.md", "*.rst", "Makefile"]
[tool.pytest.ini_options]
delete_temps = true