forked from EcoG-io/iso15118
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (43 loc) · 1.27 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
[tool.poetry]
name = "iso15118"
version = "0.28.3"
description = "Implementation of DIN SPEC 70121, ISO 15118-2 and -20 specs for SECC"
authors = ["André Duarte <[email protected]>",
"Dr. Marc Mültin <[email protected]>",
"Shalin Nijel <[email protected]>",
"Milton Eduardo Sosa <[email protected]>",
"Daniel Gordon <[email protected]>",
"İbrahim Karatas <[email protected]>",
"Santiago Salamandri <[email protected]>",
"Lukas Lombriser <[email protected]"]
[tool.poetry.dependencies]
python = "^3.9"
environs = "^9.5.0"
cryptography = "41.0.1"
pydantic = "^1.9.0"
psutil = "^5.9.0"
py4j = "^0.10.9"
types-toml = "^0.10.8.7"
mypy-extensions = "^1.0.0"
types-psutil = "^5.9.5.16"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.1"
pytest-asyncio = ">=0.18.3,<0.24.0"
asynctest = "^0.13.0"
freezegun = "^1.2.1"
black = "24.4.2"
isort = "^5.10.1"
flake8 = ">=4.0.1,<7.0.0"
pytest-cov = ">=3,<5"
aiofile = "^3.7.4"
toml = "0.10.2"
mypy = "1.7.0"
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
asyncio_mode = "strict"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
iso15118 = 'iso15118.secc.main:run'