-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (39 loc) · 1.32 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
39
40
41
42
43
44
import setuptools # type: ignore
version = {}
with open("mutwo/common_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.common",
version=VERSION,
license="GPL",
description="Common 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.common",
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",
# For the brown, brun and koenig modules
"numpy>=1.18, <2.00",
# For the brown module
"scipy>=1.4.1, <2.0.0",
# For the koenig module
"python-ranges>=1.2.0, <2.0.0",
# For the chomsky module
"treelib>=1.6.1, <2.0.0",
],
extras_require=extras_require,
python_requires=">=3.10, <4",
)