forked from EcoG-io/pyslac
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (33 loc) · 810 Bytes
/
pyproject.toml
File metadata and controls
40 lines (33 loc) · 810 Bytes
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
[tool.poetry]
name = "pyslac"
version = "0.8.3"
description = "SLAC Protocol implementation, defined in ISO15118-3"
authors = ["André Duarte <[email protected], [email protected]>"]
[tool.poetry.dependencies]
python = "^3.7"
environs = "^9.5.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1.1"
pytest-lazy-fixture = "^0.6.3"
pytest-cov = "^3.0.0"
pytest-pylint = "^0.18.0"
pytest-watch = "^4.2.0"
pytest-asyncio = "^0.18.3"
black = "22.3.0"
isort = "^5.10.1"
flake8 = "^4.0.1"
mypy = "^0.971"
toml = "^0.10.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
ignore_missing_imports = true
python_version = "3.9"
ignore_errors = false
follow_imports = "silent"
strict_optional = false
[tool.black]
line-length = 88
[tool.isort]
profile = "black"