diff options
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..f8b399b --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,29 @@ +[project] +name = "umapyai" +version = "0.1.0" +description = "Uma Musume: Pretty Derby Build Assistant (AI)" +authors = [{ name = "Fuwn", email = "[email protected]" }] +dependencies = [ + "chromadb>=1.0.15", + "sentence-transformers>=5.0.0", + "requests>=2.32.4", + "psutil>=7.0.0", +] +requires-python = ">= 3.8" + +[project.scripts] +"umapyai" = "umapyai:main" + +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[tool.rye] +managed = true +dev-dependencies = ["yapf>=0.43.0", "ruff>=0.12.5"] + +[tool.hatch.metadata] +allow-direct-references = true + +[tool.hatch.build.targets.wheel] +packages = ["src/umapyai"] |