-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
64 lines (57 loc) · 1.85 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# -*- coding: utf-8 -*-
# DO NOT EDIT THIS FILE!
# This file has been autogenerated by dephell <3
# https://github.com/dephell/dephell
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os.path
readme = ""
here = os.path.abspath(os.path.dirname(__file__))
readme_path = os.path.join(here, "README.rst")
if os.path.exists(readme_path):
with open(readme_path, "rb") as stream:
readme = stream.read().decode("utf8")
setup(
long_description=readme,
name="yee-cli",
version="0.1.1",
description="Simple Yeelight Room control CLI written in Python.",
python_requires="==3.*,>=3.6.0",
project_urls={"repository": "https://github.com/adamwojt/yee-cli"},
author="Adam Wojtczak",
author_email="[email protected]",
license="MIT",
keywords="yee-cli",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development",
],
entry_points={"console_scripts": ["yee = yee.cli:main"]},
packages=["yee"],
package_dir={"": "src"},
package_data={},
install_requires=[
"click==7.*,>=7.0.0",
"webcolors==1.*,>=1.11.1",
"yeelight==0.*,>=0.5.4",
],
extras_require={
"dev": [
"pip==19.*,>=19.2.3",
"pytest==4.*,>=4.6.5",
"pytest-runner==5.*,>=5.1.0",
"wheel==0.*,>=0.33.6",
]
},
)