-
Notifications
You must be signed in to change notification settings - Fork 62
/
pyproject.toml
57 lines (53 loc) · 1.51 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
53
54
55
56
57
[tool.poetry]
name = "teslajsonpy"
version = "3.12.3"
description = "A library to work with Tesla API."
authors = ["Sergey Isachenko <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/zabuldon/teslajsonpy"
readme = "README.md"
homepage = "https://github.com/zabuldon/teslajsonpy"
documentation = "https://teslajsonpy.readthedocs.io"
classifiers = [
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Environment :: Console",
"Topic :: Software Development :: Libraries :: Python Modules",
]
include = ["README.md", "LICENSE", "CHANGELOG.md"]
[tool.poetry.dependencies]
python = "^3.7"
aiohttp = ">=3.7.4"
tenacity = ">=8.1.0"
beautifulsoup4 = ">=4.9.3"
wrapt = ">=1.12.1"
authcaptureproxy = ">=1.1.3"
httpx = ">=0.17.1, <1.0"
orjson = ">=3.8.5"
[tool.poetry.dev-dependencies]
flake8 = ">=3.9.0"
mypy = ">=0.812"
black = ">=20.8b1"
Sphinx = ">=3.5.3"
autoapi = ">=2.0.1"
sphinx-rtd-theme = ">=0.5.1"
m2r2 = ">=0.3.1"
sphinx-autoapi = ">=1.7.0"
sphinx-copybutton = ">=0.3.1"
pydocstyle = ">=6.0.0"
pytest = ">=6.2.2"
coverage = ">=5.5"
tox = ">=3.23.0"
pytest-asyncio = ">=0.14.0"
pytest-cov = ">=2.11.1"
pylint = ">=2.7.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[metadata]
description-file = "README.md"