-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
55 lines (49 loc) · 1.12 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
[tool.poetry]
name = "pymoof"
version = "0.0.6"
description = "Connect to your Vanomof S3/X3 bike"
authors = ["Henri Bai <quantsini@gmail.com>"]
license = "MIT"
homepage = "https://github.com/quantsini/pymoof"
repository = "https://github.com/quantsini/pymoof"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
[tool.poetry.dependencies]
python = "~=3.7"
requests = "^2.27.1"
bleak = "^0.14.2"
cryptography = "^36.0.1"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
ipdb = "^0.13.9"
pre-commit = "^2.17.0"
tox = "^3.24.5"
coverage = "^6.3"
pytest-cov = "^3.0.0"
pytest-asyncio = "^0.17.2"
Sphinx = "^4.4.0"
sphinx-rtd-theme = "^1.0.0"
m2r2 = "^0.3.2"
[tool.tox]
legacy_tox_ini="""
[tox]
isolated_build = True
envlist = py39
[testenv]
deps =
pytest
coverage
pytest-asyncio
commands =
coverage run -m pytest {posargs:tests}
coverage report --fail-under=95 -m
"""
[tool.pytest.ini_options]
asyncio_mode = "strict"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"