forked from Wasted-Audio/hvcc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (52 loc) · 1.74 KB
/
pyproject.toml
File metadata and controls
60 lines (52 loc) · 1.74 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
55
56
57
58
59
60
[tool.poetry]
name = "hvcc"
version = "0.15.0"
description = "`hvcc` is a python-based dataflow audio programming language compiler that generates C/C++ code and a variety of specific framework wrappers."
authors = ["Enzien Audio, Wasted Audio"]
license = "GPLv3"
readme = "README.md"
documentation = "https://wasted-audio.github.io/hvcc/"
repository = "https://github.com/Wasted-Audio/hvcc"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Compilers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[tool.poetry.scripts]
hvcc = "hvcc:main"
hvutil = "hvcc.utils:main"
[tool.poetry.dependencies]
python = "^3.9"
Jinja2 = ">=2.11"
pydantic = ">=2.9.1"
pydantic-extra-types = "^2.10.6"
arpeggio = "^2.0.2"
[tool.poetry.group.dev.dependencies]
numpy = "^2.0.1"
scipy = [
{ version = "^1.16.1", python = "^3.11"},
{ version = "^1.13.1", python = "^3.9"},
]
pytest-cov = ">=5,<8"
flake8 = "^7.1.1"
mypy = "^1.11.2"
pytest = "^8.3.3"
[tool.poetry-pyinstaller-plugin]
collect = { "all" = ["arpeggio"] }
include = { "hvcc/generators" = "hvcc/generators", "hvcc/core" = "hvcc/core", "hvcc/interpreters" = "hvcc/interpreters" }
[tool.poetry-pyinstaller-plugin.targets]
Heavy = { source = "hvcc/main.py", type = "onefile", bundle = true, arch = "x86_64" }
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
plugins = [
"pydantic.mypy"
]