-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
42 lines (35 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
[project]
name = "dkdc-md-cli"
version = "0.2.1"
description = "CLI for the MotherDuck REST API"
requires-python = ">=3.11"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "Cody", email = "cody@dkdc.io" }]
readme = "README.md"
dependencies = []
[project.urls]
Homepage = "https://github.com/dkdc-io/md-cli"
Repository = "https://github.com/dkdc-io/md-cli"
Issues = "https://github.com/dkdc-io/md-cli/issues"
[project.scripts]
md = "dkdc_md_cli:main"
[dependency-groups]
dev = ["maturin>=1.0,<2.0", "ruff>=0.9", "ty>=0.0.19", "pytest>=8", "ipython>=9.10.0"]
[tool.maturin]
module-name = "dkdc_md_cli.core"
python-packages = ["dkdc_md_cli"]
python-source = "py"
manifest-path = "crates/dkdc-md-cli-py/Cargo.toml"
[tool.ty.src]
# Exclude standalone uv scripts — ty can't resolve their inline dependencies
exclude = ["tests/dashboard.py"]
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[tool.uv]
cache-keys = [
{ file = "pyproject.toml" },
{ file = "crates/dkdc-md-cli/**/*.rs" },
{ file = "crates/dkdc-md-cli-py/**/*.rs" },
]