-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (40 loc) · 982 Bytes
/
pyproject.toml
File metadata and controls
48 lines (40 loc) · 982 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
44
45
46
47
[project]
name = "trackpack"
dynamic = ["version"]
authors = [{name = "offa"}]
description = "Package audio tracks."
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">= 3.10"
dependencies = [
"PyYAML == 6.0.3"
]
keywords = ["audio", "packaging", "stems"]
classifiers = [
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Utilities"
]
[tool.pyrefly]
project-includes = [
"**/*.py*",
"**/*.ipynb",
]
[project.urls]
"Homepage" = "https://github.com/offa/trackpack"
[project.scripts]
trackpack = "trackpack.__main__:main"
[project.optional-dependencies]
dev = [
"pylint == 4.0.5",
"pyrefly==0.55.0",
"pytest == 9.0.2",
"ruff == 0.15.4"
]
[build-system]
requires = ["setuptools"]
[tool.setuptools.dynamic]
version = {attr = "trackpack.version.__version__"}
[tool.setuptools.packages.find]
include = ["trackpack"]