-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (32 loc) · 1.08 KB
/
setup.py
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
import setuptools # type: ignore
version = {}
with open("mutwo/csound_version/__init__.py") as fp:
exec(fp.read(), version)
VERSION = version["VERSION"]
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
extras_require = {"testing": ["pytest>=7.1.1"]}
setuptools.setup(
name="mutwo.csound",
version=VERSION,
license="GPL",
description="csound extension for event based framework for generative art",
long_description=long_description,
long_description_content_type="text/markdown",
author="Levin Eric Zimmermann",
author_email="levin.eric.zimmermann@posteo.eu",
url="https://github.com/mutwo-org/mutwo.ext-csound",
project_urls={"Documentation": "https://mutwo-org.github.io"},
packages=[
package
for package in setuptools.find_namespace_packages(include=["mutwo.*"])
if package[:5] != "tests"
],
setup_requires=[],
install_requires=[
"mutwo.core>=2.0.0, <3.0.0",
"natsort>=8.0.0, <9.0.0",
],
extras_require=extras_require,
python_requires=">=3.10, <4",
)