Skip to content

Commit b8ca61d

Browse files
committed
Add pyproject.toml file
1 parent 9028b59 commit b8ca61d

1 file changed

Lines changed: 45 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
[tool.poetry]
2+
name = "elmax"
3+
version = "0.1.0"
4+
description = "Python client for the Elmax CLoud"
5+
6+
license = "Apache-2.0"
7+
authors = ["Fabian Affolter <fabian@affolter-engineering.ch>"]
8+
maintainers = []
9+
readme = "README.md"
10+
11+
homepage = "https://github.com/home-assistant-ecosystem/python-elmax"
12+
repository = "https://github.com/home-assistant-ecosystem/python-elmax"
13+
documentation = "https://github.com/home-assistant-ecosystem/python-elmax"
14+
15+
keywords = ["iot", "cloud", "home-assistant"]
16+
17+
classifiers = [
18+
"Development Status :: 3 - Alpha",
19+
"Environment :: Console",
20+
"License :: OSI Approved :: Apache Software License",
21+
"Programming Language :: Python :: 3",
22+
"Programming Language :: Python :: 3.7",
23+
"Programming Language :: Python :: 3.8",
24+
"Programming Language :: Python :: 3.9",
25+
"Programming Language :: Python :: 3.10",
26+
"Topic :: Home Automation"
27+
]
28+
29+
[tool.poetry.dependencies]
30+
python = "^3.8"
31+
httpx = "^0.16.0"
32+
yarl = "^1.6"
33+
34+
[tool.poetry.dev-dependencies]
35+
pytest-cov = "^2.8.1"
36+
black = "^20.8b1"
37+
pytest = "^6"
38+
sphinx = "^3"
39+
40+
[tool.poetry.scripts]
41+
poetry-template = "elmax.cli:run"
42+
43+
[build-system]
44+
requires = ["poetry-core"]
45+
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)