forked from gri-gus/streamdeck-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (44 loc) · 1.33 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
45
46
47
48
import setuptools
VERSION = "0.3.2"
PACKAGE_DIR = "src"
REQUIREMENTS_FILE = PACKAGE_DIR + "/requirements.txt"
README = "README.md"
with open(REQUIREMENTS_FILE, "r") as f:
requirements = f.read().splitlines()
with open(README, "r") as file:
long_description = file.read()
setuptools.setup(
name="streamdeck_sdk",
version=VERSION,
author="Grigoriy Gusev",
author_email="[email protected]",
description="Library for creating Stream Deck plugins in Python.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/gri-gus/streamdeck-python-sdk",
packages=setuptools.find_packages(where=PACKAGE_DIR),
package_dir={"": PACKAGE_DIR},
classifiers=[
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires='>=3.7',
license="Apache Software License",
keywords=[
"python",
"sdk",
"streamdeck",
"streamdeck-sdk",
"streamdeck_sdk",
"stream deck sdk",
"stream deck",
"elgato",
"elgato sdk",
"elgato stream deck",
"streamdeck-python-sdk",
"streamdeck_python_sdk",
"streamdeck python sdk"
],
install_requires=requirements,
)