-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (44 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
48 lines (44 loc) · 1.06 KB
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
[project]
name = "SQL_2_GGM"
version = "0.1.0"
requires-python = "== 3.12.10"
dependencies = [
"connectorx>=0.4.4",
"python-dotenv>=1.0.1",
"oracledb>=3.2.0",
"polars>=1.31.0",
"psycopg2>=2.9.10",
"pyarrow>=21.0.0",
"pymysql>=1.1.1",
"pyodbc>=5.2.0",
"pypiwin32>=223; sys_platform == 'win32'",
"sqlalchemy>=2.0.41",
"sqlparse>=0.5.3",
"pyodata>=1.11.2",
"requests>=2.32.0",
"cryptography>=45.0.5",
]
description = "Pipelines to extract, load, and transform data from various sources into the Gemeentelijk Gegevensmodel (GGM)."
readme = "README.md"
license = { file = "LICENSE.md" }
authors = [
{ name = "Kennispunt Twente" },
{ name = "Gemeente Oldenzaal" },
{ name = "Gemeente Rijssen-Holten" },
]
[project.optional-dependencies]
dev = [
"configparser>=7.2.0",
"docker>=7.1.0",
"pandas>=2.3.1",
"pytest>=8.4.1",
]
[dependency-groups]
dev = [
"SQL_2_GGM[dev]",
]
[build-system]
requires = ["hatchling>=1.27.0"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["."]