forked from jpcima/faustpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (36 loc) · 949 Bytes
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "faustdoctor"
dynamic = ["version"]
description = "A post-processor for faust giving more flexibility at source generation"
author = [
{ name="Jean Pierre Cimalando" },
{ name="Christopher Arndt", email="info@chrisarndt.de" },
]
maintainer = [
{ name="Christopher Arndt", email="info@chrisarndt.de" },
]
readme = "README.md"
license = "BSL-1.0"
dependencies = [
"Jinja2",
]
requires-python = ">=3.9"
[project.urls]
"Homepage" = "https://github.com/SpotlightKid/faustdoctor"
"Documentation" = "https://spotlightkid.github.io/faustdoctor"
"Bug Tracker" = "https://github.com/SpotlightKid/faustdoctor/issues"
[project.scripts]
faustdr = "faustdoctor.main:main"
[tool.hatch.version]
path = "faustdoctor/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"docs",
"examples",
"faustdoctor",
"thirdparty",
"CHANGELOG.md"
]