generated from rl-institut/rli_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (36 loc) · 991 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
43
44
[tool.poetry]
name = "django-oemof"
version = "0.18.1"
description = "Django application to run oemof"
authors = ["Hendrik Huyskens <[email protected]>"]
license = "AGPL-3.0"
readme = "README.md"
packages = [{include = "django_oemof"}]
[tool.poetry.dependencies]
python = "^3.9"
django-environ = "^0.10.0" # https://github.com/joke2k/django-environ
boto3 = "1.26.137" # Fixed as it is unused and causes long updating time in poetry/pip
djangorestframework = "^3.14.0"
celery = "^5.1.2"
pandas = ">2.0"
numpy = "<2.0"
psycopg2-binary = "^2.9.10"
[tool.poetry.group.dev.dependencies]
pre-commit = "^2.20.0"
black = "^21.12b0"
flake8 = "^5.0.4"
pylint = "^2.15.2"
mypy = "^0.990"
Django = "^3.2.3"
psycopg2-binary = "^2.9.5"
pytest = "^7.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[tool.mypy]
ignore_missing_imports = true
exclude = ["django_oemof/migrations/*"]