-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (47 loc) · 1.48 KB
/
pyproject.toml
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
[tool.poetry]
name = "yee-cli"
version = "0.1.1"
description = "Simple Yeelight Room control CLI written in Python."
authors = ["Adam Wojtczak <[email protected]>"]
license = "MIT"
readme = "README.rst"
keywords = ["yee-cli"]
repository = "https://github.com/adamwojt/yee-cli"
packages = [
{ include = "yee", from = "src" },
]
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",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/adamwojt/yee-cli/issues"
"Source" = "https://github.com/adamwojt/yee-cli"
"Documentation" = "https://github.com/adamwojt/yee-cli"
[tool.poetry.dependencies]
python = "^3.6"
Click = "^7.0"
yeelight = "^0.5.4"
webcolors = "^1.11.1"
[tool.poetry.dev-dependencies]
pip = "^19.2.3"
wheel = "^0.33.6"
pytest = "^4.6.5"
pytest-runner = "^5.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry.plugins."console_scripts"]
"yee" = "yee.cli:main"
[tool.dephell.main]
from = {format = "poetry", path = "pyproject.toml"}
to = {format = "setuppy", path = "setup.py"}