-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
37 lines (33 loc) · 945 Bytes
/
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
[tool.poetry]
name = "sp110e"
version = "0.9.7"
description = "Control SP110E BLE RGB LED device from computer"
authors = ["Pavel Roslovets <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/roslovets/SP110E"
repository = "https://github.com/roslovets/SP110E"
keywords = ["SP110E", "RGB", "LED"]
classifiers =[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
[tool.poetry.dependencies]
python = ">=3.6"
bleak = "==0.13.0"
syncer = "==1.3.0"
[tool.poetry.dev-dependencies]
python-semantic-release = "==7.19.2"
lazydocs = "*"
pydocstyle = "*"
toml = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.semantic_release]
remove_dist = "false"
branch = "main"
version_toml = "pyproject.toml:tool.poetry.version"
upload_to_release = "true"
upload_to_pypi = "true"