generated from phipag/python-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (36 loc) · 931 Bytes
/
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
[tool.poetry]
name = "ev-simulation-model"
version = "0.1.0"
description = "A generative model to simulate charging data for different populations of electric vehicle users."
authors = ["Philipp Page <github@philipp-page.de>"]
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
numpy = "^1.22.3"
pandas = "^1.4.1"
matplotlib = "^3.5.1"
seaborn = "^0.11.2"
scikit-learn = "^1.0.2"
scipy = "^1.8.0"
[tool.poetry.dev-dependencies]
pytest = "^7.0.0"
tox = "^3.24.4"
isort = "^5.10.1"
black = "^22.1.0"
flake8 = "^4.0.1"
mypy = "^0.931"
pytest-cov = "^3.0.0"
jupyterlab = "^3.3.1"
jupyterlab-code-formatter = "^1.4.10"
pandas-profiling = "^3.1.0"
ipywidgets = "^7.6.5"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[tool.mypy]
files = "ev_simulation_model"
ignore_missing_imports = true
plugins = "numpy.typing.mypy_plugin"