-
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.42 KB
/
pyproject.toml
File metadata and controls
54 lines (45 loc) · 1.42 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", "setuptools-git-versioning", "pytest-runner"]
build-backend = "setuptools.build_meta"
[project]
name = "faber"
authors = [
{name = "Stefan Seefeld", email = "stefan@seefeld.name"}
]
maintainers = [
{name = "Stefan Seefeld", email = "stefan@seefeld.name"}
]
description = "Faber is a construction tool."
requires-python = ">= 3.6"
dependencies = []
dynamic = ["version"]
license = "BSL-1.0"
license-files = ["LICENSE"]
classifiers = ["Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Testing",
"Programming Language :: Python"]
[project.urls]
Homepage = "https://stefanseefeld.github.io/faber"
Repository = "https://github.com/stefanseefeld/faber"
Issues = "https://github.com/stefanseefeld/faber/issues"
[project.scripts]
faber = "faber.cli:cli_main"
[tool.setuptools]
package-dir = {"" = "src"}
script-files = []
[tool.setuptools-git-versioning]
enabled = true
version_callback = "setup:get_version_from_git"
[tool.setuptools.packages.find]
where = ["src"]
include = ["faber*"]
[tool.setuptools.package-data]
schemas=['schemas/*.rnc', 'schemas/*.sql']
[tool.setuptools.dynamic]
dependencies = {file = ['requirements.txt']}
[tool.pytest.ini_options]
addopts = "-v"
testpaths = ["tests"]