Skip to content

Commit 16f6a25

Browse files
sync from internal repository
1 parent d385b1f commit 16f6a25

6 files changed

Lines changed: 11 additions & 10 deletions

File tree

dkdc-md-cli-py/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dkdc-md-cli-py/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "dkdc-md-cli-py"
5-
version = "0.1.0"
5+
version = "0.1.1"
66
edition = "2024"
77
authors = ["Cody <cody@dkdc.dev>"]
88
license = "MIT"

dkdc-md-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "dkdc-md-cli"
5-
version = "0.1.0"
5+
version = "0.1.1"
66
edition = "2024"
77
rust-version = "1.93"
88
authors = ["Cody <cody@dkdc.dev>"]

pyproject.toml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
[project]
22
name = "dkdc-md-cli"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "CLI for the MotherDuck REST API"
55
requires-python = ">=3.11"
66
license = "MIT"
77
license-files = ["LICENSE"]
88
authors = [{ name = "Cody", email = "cody@dkdc.dev" }]
9+
readme = "README.md"
910
dependencies = []
1011

1112
[project.urls]
@@ -14,14 +15,14 @@ Repository = "https://github.com/lostmygithubaccount/dkdc-md-cli"
1415
Issues = "https://github.com/lostmygithubaccount/dkdc-md-cli/issues"
1516

1617
[project.scripts]
17-
md = "dkdc_md:main"
18+
md = "dkdc_md_cli:main"
1819

1920
[dependency-groups]
2021
dev = ["maturin>=1.0,<2.0", "ruff>=0.9", "pytest>=8", "ipython>=9.10.0"]
2122

2223
[tool.maturin]
23-
module-name = "dkdc_md.core"
24-
python-packages = ["dkdc_md"]
24+
module-name = "dkdc_md_cli.core"
25+
python-packages = ["dkdc_md_cli"]
2526
python-source = "src"
2627
manifest-path = "dkdc-md-cli-py/Cargo.toml"
2728

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import sys
22

3-
from dkdc_md.core import run as _run
3+
from dkdc_md_cli.core import run as _run
44

55
__all__ = ["run", "main"]
66

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)