-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (65 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
72 lines (65 loc) · 1.3 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "egon-validation"
version = "1.3.1"
description = "Validation library for eGon data pipeline (rules hard-coded, SQL-first, Airflow-friendly)"
readme = "README.md"
requires-python = ">=3.10,<3.11"
license = {text = "AGPL-3.0-only"}
authors = [{name="sagemaso", email="sarah.sommer@rl-institut.de"}]
dependencies = [
"SQLAlchemy>=1.4.36,<2.0",
"psycopg2-binary",
"pandas>=2.0,<2.1",
"geopandas>=0.10.0",
"geoalchemy2<0.7.0",
"numpy<=1.26.4"
]
[project.optional-dependencies]
test = [
"pytest>=7.0",
"pytest-mock>=3.0",
"pytest-cov>=4.0"
]
dev = [
"black>=24.0.0",
"flake8>=6.0.0"
]
[tool.setuptools.packages.find]
include = ["egon_validation*"]
[tool.setuptools.package-data]
egon_validation = ["report/assets/*"]
[project.scripts]
egon-validation = "egon_validation.cli:main"
[tool.black]
line-length = 88
target-version = ["py310"]
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.flake8]
max-line-length = 88
extend-ignore = ["E203", "W503"]
exclude = [
".git",
"__pycache__",
".venv",
"venv",
"build",
"dist",
"*.egg-info"
]