forked from Wasted-Audio/hvcc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
29 lines (27 loc) · 940 Bytes
/
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
[metadata]
name = hvcc
version = 0.4.0
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.4.0.tar.gz
classifiers =
Development Status :: 3 - Alpha
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
[options]
include_package_data = True
packages = find:
python_requires = >= 3.7
install_requires =
Jinja2>=2.11
importlib_resources>=5.1
[options.entry_points]
console_scripts =
hvcc = hvcc:main
hvutil = hvcc.utils:main