-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (32 loc) · 1.09 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
38
import setuptools # type: ignore
version = {}
with open("mutwo/isis_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": ["nose", "coveralls"]}
setuptools.setup(
name="mutwo.isis",
version=VERSION,
license="GPL",
description="ISiS 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.isis",
project_urls={"Documentation": "https://mutwo.readthedocs.io/en/latest/"},
packages=[
package
for package in setuptools.find_namespace_packages(include=["mutwo.*"])
if package[:5] != "tests"
],
setup_requires=[],
install_requires=[
"mutwo.core>=0.61.4, <1.0.0",
"mutwo.music>=0.17.0, <1.0.0",
],
extras_require=extras_require,
python_requires=">=3.9, <4",
)