-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (60 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
69 lines (60 loc) · 1.44 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "dataciviclab-toolkit"
dynamic = ["version"]
description = "DataCivicLab Toolkit: RAW -> CLEAN -> MART with DuckDB"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{ name = "DataCivicLab" }
]
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Database",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"pyyaml>=6.0.3",
"pydantic>=2.8.0",
"pandas>=2.0",
"openpyxl>=3.1.0",
"duckdb>=0.10.0",
"mcp>=1.0",
"requests>=2.33.1",
"typer>=0.12.0",
"rich>=13.0"
]
[project.optional-dependencies]
parquet = [
"pyarrow>=14.0"
]
dev = [
"build>=1.4.3",
"pytest>=8.0",
"pytest-cov>=5.0.0",
"ruff>=0.3.0",
"twine>=5.0.0"
]
[project.scripts]
toolkit = "toolkit.cli.app:app"
[project.urls]
Repository = "https://github.com/dataciviclab/toolkit"
Documentation = "https://github.com/dataciviclab/toolkit"
[tool.setuptools.packages.find]
include = ["toolkit*"]
exclude = ["tests*"]
[tool.setuptools.dynamic]
version = { attr = "toolkit.version.__version__" }
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F"]