-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (42 loc) · 1.54 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
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="ambibulb",
version="0.0.51",
author="Sergey B",
license="MIT",
author_email="[email protected]",
description="Python utility controls the color of RC lights based on the dominant color of an image on your screen.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/bespsm/ambibulb",
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Utilities",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Graphics :: Capture :: Screen Capture",
],
setup_requires=["cffi>=1.13"],
cffi_modules=["./snapshot_bcm/cffi_build.py:ffi"],
install_requires=[
line.strip() for line in open("./requirements.txt").readlines()
],
include_package_data=True,
entry_points={
"console_scripts": [
"ambibulb=ambibulb.__main__:main",
"ambibulb-config=ambibulb.ambibulb_config:main",
],
},
platforms="linux",
python_requires=">=3.7",
)