forked from zabuldon/teslajsonpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (56 loc) · 1.49 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
58
59
60
[tool.poetry]
name = "teslajsonpy"
version = "1.9.0"
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.6.1"
aiohttp = "^3.7.4"
backoff = "^1.10.0"
beautifulsoup4 = "^4.9.3"
wrapt = "^1.12.1"
authcaptureproxy = "^1.0.2"
httpx = ">=0.17.1, <1.0"
[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"