forked from ColinMaudry/decp-processing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (39 loc) · 735 Bytes
/
pyproject.toml
File metadata and controls
42 lines (39 loc) · 735 Bytes
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
[project]
name = "decp-processing"
description = "An introductory project to Prefect"
version = "2.0.0"
requires-python = ">= 3.9"
authors = [
{ name = "Colin Maudry", email = "colin+decp@maudry.com" }
]
dependencies = [
"python-dotenv",
"pandas",
"polars",
"pyarrow",
"tableschema",
"frictionless==4.40.11",
"datapackage-to-datasette",
"ipykernel",
"prefect",
]
[project.optional-dependencies]
dev = [
"pre-commit",
"pytest-env",
"pytest",
]
[tool.pytest.ini_options]
pythonpath = [
"src"
]
testpaths = [
"tests",
]
env = [
"DECP_JSON_FILES_PATH=data/decp_json_files_test.json",
"PREFECT_API_URL="
]
addopts = "-p no:warnings"
[tool.prefect]
logging.level = "INFO"