-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (31 loc) · 1.05 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
37
import setuptools # type: ignore
version = {}
with open("mutwo/reaper_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.reaper",
version=VERSION,
license="GPL",
description="Reaper extension for event based framework for generative art",
long_description=long_description,
long_description_content_type="text/markdown",
author="Levin Eric Zimmermann",
author_email="[email protected]",
url="https://github.com/mutwo-org/mutwo.reaper",
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",
],
extras_require=extras_require,
python_requires=">=3.9, <4",
)