-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
93 lines (86 loc) · 2.19 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[project]
name = "monitoring-api"
dynamic = ["version"]
description = "Django API and data import/export Python software package for long-term environmental monitoring data."
authors = [
{name = "Rebecca Kurup Buchholz", email = "[email protected]"},
]
dependencies = [
"asgiref==3.4.1",
"atomicwrites==1.4.0",
"attrs==20.3.0",
"certifi==2022.6.15",
"cffi==1.14.4",
"chardet==3.0.4",
"colorama==0.4.4",
"configparser==5.0.2",
"cryptography==3.4.5",
"datetime==4.3",
"deepdiff==5.8.1",
"django==3.2.19",
"django-environ==0.9.0",
"django-postgres-copy==2.5.0",
"drf-spectacular>=0.24.2",
"djangorestframework>=3.14.0",
"et-xmlfile==1.0.1",
"idna==2.10",
"iniconfig==1.1.1",
"jdcal==1.4.1",
"numpy==1.22.3",
"ordered-set==4.1.0",
"pandas==1.2.4",
"pluggy==0.13.1",
"postgres==3.0.0",
"psycopg2-binary==2.8.6",
"psycopg2-pool==1.1",
"py==1.10.0",
"pycparser==2.20",
"pyopenssl==20.0.1",
"pyparsing==2.4.7",
"pytest==6.1.2",
"python-dateutil==2.8.1",
"pytz==2020.1",
"requests==2.25.1",
"six==1.15.0",
"sqlparse==0.3.1",
"toml==0.10.2",
"tzdata==2021.5",
"urllib3==1.26.5",
"zope.interface==5.1.0",
"gunicorn>=20.1.0",
"whitenoise>=6.2.0",
]
requires-python = ">=3.8"
license = {text = "MIT"}
[project.optional-dependencies]
[project.urls]
homepage = "https://envidat.ch"
documentation = "https://gitlabext.wsl.ch/envidat/monitoring-backend"
repository = "https://gitlabext.wsl.ch/envidat/monitoring-backend"
[tool.pdm]
version = {from = "monitoring-api/project/__version__.py"}
[[tool.pdm.source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[tool.pdm.dev-dependencies]
dev = [
"debugpy>=1.6.2",
]
[build-system]
requires = ["pdm-pep517"]
build-backend = "pdm.pep517.api"
[tool.commitizen]
name = "cz_conventional_commits"
version = "2.1.0"
version_files = [
"pyproject.toml:version",
"monitoring-api/project/__version__.py",
".env:APP_VERSION",
"chart/Chart.yaml:appVersion",
"monitoring-api/project/settings.py:app_version",
]
[tool.isort]
profile = "black"
atomic = true
known_first_party = ["monitoring-api"]