File: 05-pyproject.toml

package info (click to toggle)
python-validate-pyproject 0.24.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,340 kB
  • sloc: python: 3,053; makefile: 46; sh: 25
file content (24 lines) | stat: -rw-r--r-- 538 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[project]
name = "myproj"
version = "3.8"
readme = "README.rst"
urls = {Homepage = "https://github.com/me/myproj/"}
requires-python = ">=3.6"
dependencies = ["dep>=1.0.0"]

[project.entry-points]
"distutils.setup_keywords" = {use_scm_version = "myproj.setuptools:version_keyword"}

[project.optional-dependencies]
toml = ["dep>=1.0.0"]

[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
package-dir = {"" = "src"}
zip-safe = true

[tool.setuptools.packages.find]
where = ["src"]