From 0a0f8e9ce028fcd2a037efbc2d4011775e9c6d4e Mon Sep 17 00:00:00 2001 From: dreamer Date: Thu, 26 Sep 2024 17:20:12 +0200 Subject: [PATCH] remove setup.cfg --- setup.cfg | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg deleted file mode 100644 index 6745768..0000000 --- a/setup.cfg +++ /dev/null @@ -1,33 +0,0 @@ -[metadata] -name = hvcc -version = 0.12.1 -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.12.1.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.8 - Programming Language :: Python :: 3.9 - Programming Language :: Python :: 3.10 - Programming Language :: Python :: 3.11 - Programming Language :: Python :: 3.12 - -[options] -include_package_data = True -packages = find: -python_requires = >= 3.8 -install_requires = - Jinja2>=2.11 - importlib_resources>=5.1 - wstd2daisy>=0.5.3 - pydantic>=2.9.1 - -[options.entry_points] -console_scripts = - hvcc = hvcc:main - hvutil = hvcc.utils:main