-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 796 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 796 Bytes
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
import setuptools # type: ignore
MAJOR, MINOR, PATCH = 0, 1, 0
VERSION = f"{MAJOR}.{MINOR}.{PATCH}"
"""This project uses semantic versioning.
See https://semver.org/
Before MAJOR = 1, there is no promise for
backwards compatibility between minor versions.
"""
setuptools.setup(
name="walkman_modules.project",
version=VERSION,
license="GPL",
author="Levin Eric Zimmermann",
author_email="levin.eric.zimmermann@posteo.eu",
packages=[
package
for package in setuptools.find_namespace_packages(include=["walkman_modules.*"])
if package[:5] != "tests"
],
setup_requires=[],
install_requires=[
# core package
"audiowalkman>=0.21.1, <1.0.0",
# for audio
"pyo==1.0.4",
],
python_requires=">=3.10",
)