-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (21 loc) · 785 Bytes
/
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
import setuptools
with open("VERSION", "r") as f:
version = f.read().strip()
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="xtouchmini",
version=version,
description="Library to control Berhinger X-Touch Mini devices.",
author="Pierre M",
author_email="[email protected]",
url="https://github.com/devleaks/python-berhinger-xtouchmini",
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
install_requires=["mido<1.4", "python-rtmidi<1.5;python_version<'3.11'", "python-rtmidi<1.6;python_version>='3.11'"],
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
python_requires=">=3.8",
)