forked from esoteric-templates/template
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (28 loc) · 775 Bytes
/
pyproject.toml
File metadata and controls
35 lines (28 loc) · 775 Bytes
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
[build-system]
requires = ["setuptools", "wheel"]
[project]
name = "template"
version = "0.1.0"
description = "A template Python package"
readme = "README.md"
requires-python = ">=3.13.9"
license = "AGPL-3.0-only"
license-files = ["LICENSE"]
authors = [
{ name = "Author", email = "author@example.org" },
]
dependencies = [
]
[project.urls]
"Source" = "https://gitlab.com/-/p/75750085"
"Bug Reports" = "https://gitlab.com/esoteric-templates/templates/template-python-package/-/issues"
# [project.scripts]
# template = "template.__main__:main"
[tool.setuptools]
packages = { find = { include = ["template*"] } }
include-package-data = true
[tool.setuptools.package-data]
"template" = ["assets/**/*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]