diff options
| author | 2025-03-13 01:01:20 +0800 | |
|---|---|---|
| committer | 2025-03-13 01:01:20 +0800 | |
| commit | 80b74f79dfbfa9afb845172a5ea84110d75f1bc8 (patch) | |
| tree | 361dcb055de78b50d82619646fde28fa618f9507 /pyproject.toml | |
| parent | dd873e954a92d0e3209fe98b034570b47c859589 (diff) | |
| download | conventional_role_play-80b74f79dfbfa9afb845172a5ea84110d75f1bc8.tar.gz conventional_role_play-80b74f79dfbfa9afb845172a5ea84110d75f1bc8.zip | |
refactor(project)!: first implementation of the Conventional Role Play SDK with core components, renderers, extractors, and example usage.
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/pyproject.toml b/pyproject.toml index 6081a51..e8f26b1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,16 +3,16 @@ requires = ["maturin>=1.4,<2.0"] build-backend = "maturin" [project] -name = "pyo3_template" +name = "conventionalrp" dynamic = ["version"] -description = "HydroRoll Pyo3 Project Template" -authors = [{ name = "yourname", email = "you@hydroroll.team" }] +description = "HydroRoll Conventional Role Play SDK" +authors = [{ name = "HsiangNianian", email = "leader@hydroroll.team" }] dependencies = [] requires-python = ">=3.9" readme.content-type = "text/x-rst" readme.text = """ """ -license = { text = "MIT" } +license = { text = "AGPLv3.0" } keywords = ["hydroroll"] classifiers = [ "Development Status :: 5 - Production/Stable", @@ -27,17 +27,13 @@ classifiers = [ [project.urls] homepage = "https://hydroroll.team/" -repository = "https://github.com/HydroRoll-Team/{project}" -documentation = "https://{project}.hydroroll.team/" - -[project.scripts] -pyo3_template = "pyo3_template.__main__:main" -pyo3t = "pyo3_template.__main__:main" +repository = "https://github.com/HydroRoll-Team/conventional_role_play" +documentation = "https://crp.hydroroll.team/" [tool.maturin] features = ["pyo3/extension-module"] -module-name = "pyo3_template._core" -python-package = "pyo3_template" +module-name = "conventionalrp._core" +python-package = "conventionalrp" python-source = "src" [tool.ruff] |
