File: both-text-and-file.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 (26 lines) | stat: -rw-r--r-- 708 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
25
26
[project]
name = "some-project"
author = { name = "Anderson Bravalheri" }
description = "Some description"
readme = "README.rst"
license = { text = "MIT", file = "LICENSE.txt" }
classifiers = [
    "Development Status :: 5 - Production/Stable",
    "Topic :: Utilities",
]
dynamic = ["version"]
requires-python = ">=3.6"
dependencies = [
    "importlib-metadata; python_version<\"3.8\"",
    "appdirs>=1.4.4,<2",
]

[tool.setuptools]
zip-safe = false
include-package-data = true
exclude-package-data = { "pkg1" = ["*.yaml"] }
package-dir = {"" = "src"} # all the packages under the src folder
platforms = ["any"]

[tool.setuptools.packages]
find = { where = ["src"], exclude = ["tests"], namespaces = true }