forked from davidgasquez/grants-data-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (55 loc) · 1.29 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
[project]
name = "ggdp"
version = "1.0.0"
authors = [{ name = "David Gasquez" }]
dependencies = [
"aiohttp",
"dagster-dbt",
"dagster-duckdb-pandas",
"dagster-duckdb",
"dagster==1.7.1",
"dbt-core",
"dbt-duckdb",
"duckdb",
"fsspec",
"ipykernel",
"ipywidgets",
"itables",
"matplotlib",
"nbclient",
"nbformat",
"numpy",
"pandas",
"pyarrow",
"regex",
"tenacity",
"tqdm",
]
requires-python = ">=3.10, <3.12"
readme = "README.md"
license = { text = "MIT" }
[project.urls]
Homepage = "https://davidgasquez.github.io/gitcoin-grants-data-portal/"
Changelog = "https://github.com/davidgasquez/gitcoin-grants-data-portal/commits/main/"
Issues = "https://github.com/davidgasquez/gitcoin-grants-data-portal/issues"
CI = "https://github.com/davidgasquez/gitcoin-grants-data-portal/actions"
[project.optional-dependencies]
dev = ["dagster-webserver", "harlequin", "ruff"]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["ggdp"]
[tool.setuptools.package-data]
"ggdp" = ["../dbt/**"]
[tool.dagster]
module_name = "ggdp"
[tool.sqlfmt]
line_length = 120
check = true
fast = false
dialect = "duckdb"
[tool.ruff.lint.isort]
case-sensitive = true
combine-as-imports = true
length-sort = true