forked from Wasted-Audio/hvcc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
32 lines (30 loc) · 1.02 KB
/
setup.cfg
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
[metadata]
name = hvcc
version = 0.6.3
license = GPLv3
author = Enzien Audio, Wasted Audio
description = `hvcc` is a python-based dataflow audio programming language compiler that generates C/C++ code and a variety of specific framework wrappers.
url = https://github.com/Wasted-Audio/hvcc
download_url = https://github.com/Wasted-Audio/hvcc/archive/refs/tags/v0.6.3.tar.gz
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.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
[options]
include_package_data = True
packages = find:
python_requires = >= 3.7
install_requires =
Jinja2>=2.11
importlib_resources>=5.1
json2daisy>=0.4.2
[options.entry_points]
console_scripts =
hvcc = hvcc:main
hvutil = hvcc.utils:main