forked from lack/soundcraft-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (36 loc) · 1.19 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
import re
from setuptools import find_packages, setup
version = re.search(
'^__version__\\s*=\\s*"(.*)"', open("soundcraft/__init__.py").read(), re.M
).group(1)
with open("README.md", "rb") as fh:
long_description = fh.read().decode("utf-8")
setup(
name="soundcraft-utils",
version=version,
description="Soundcraft Notepad control utilities",
long_description=long_description,
long_description_content_type="text/markdown",
author="Jim Ramsay",
author_email="i.am@jimramsay.com",
url="https://github.com/lack/soundcraft-utils",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Multimedia :: Sound/Audio :: Mixers",
],
python_requires=">=3.6",
install_requires=["pyusb", "pydbus"],
entry_points={
"console_scripts": [
"soundcraft_ctl=soundcraft.cli:main",
"soundcraft_dbus_service=soundcraft.dbus:main",
],
"gui_scripts": ["soundcraft_gui=soundcraft.gui:main"],
},
package_data={
"soundcraft": ["data/*/*/*", "data/*/*"]
},
)