diff options
| author | Fuwn <[email protected]> | 2023-07-24 22:27:18 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-07-24 22:27:18 -0700 |
| commit | ee489b4b8d924ed6c5fe25ad92c43b174c8c5b6e (patch) | |
| tree | ec425b61704100e1708e9637c3c967ee6b77e683 /pyproject.toml | |
| download | old.due.moe-ee489b4b8d924ed6c5fe25ad92c43b174c8c5b6e.tar.xz old.due.moe-ee489b4b8d924ed6c5fe25ad92c43b174c8c5b6e.zip | |
feat: initial build
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..ed4fb45 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,28 @@ +[project] +name = "due" +version = "0.1.0" +description = "due.moe" +authors = [ + { name = "Fuwn", email = "[email protected]" } +] +dependencies = [ + "flask>=2.3.2", + "requests>=2.31.0", + "flask-cors>=4.0.0", + "python-dotenv>=1.0.0", + "joblib>=1.3.1", + "Flask-Caching>=2.0.2", +] +readme = "README.md" +requires-python = ">= 3.8" + +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[tool.rye] +managed = true +dev-dependencies = [] + +[tool.hatch.metadata] +allow-direct-references = true |