-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 974 Bytes
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 974 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
36
37
38
39
40
41
42
43
[project]
name = "csdoc"
version = "0.1.4"
description = "Documentation generator for Csound projects"
readme = "README.md"
requires-python = ">=3.13"
authors = [
{ name = "Steven Yi", email = "stevenyi@gmail.com" },
]
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = ["csound", "documentation", "audio", "music"]
dependencies = [
"jinja2>=3.1.6",
"markdown>=3.10.1",
"typer>=0.21.1",
]
[project.urls]
Homepage = "https://github.com/kunstmusik/csdoc"
Repository = "https://github.com/kunstmusik/csdoc"
"Bug Tracker" = "https://github.com/kunstmusik/csdoc/issues"
[project.scripts]
csdoc = "csdoc.cli:app"
[tool.uv]
package = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
]