aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/pyproject.toml
diff options
context:
space:
mode:
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml28
1 files changed, 28 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 00000000..cfd83024
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,28 @@
+[build-system]
+requires = ["setuptools>=42", "wheel"]
+build-backend = "setuptools.build_meta"
+
+[tool.poetry]
+name = "HydroRollCore"
+version = "0.1.1"
+authors = ["简律纯 <i@jyunko.cn>"]
+description = "Core of HydroRoll."
+long_description = """
+The long description of your project.
+"""
+keywords = ["HydroRoll", "core"]
+homepage = "https://github.com/HydoRoll-Team/HydroRollCore"
+
+[tool.poetry.dependencies]
+python = ">=3.8"
+tkinter = "^8.6.10"
+
+[build-system]
+requires = ["poetry-core>=1.0.0"]
+build-backend = "poetry.core.masonry.api"
+
+[tool.poetry.plugins."poetry-plugin"]
+class = "poetry_plugin.plugin.Plugin"
+
+[tool.poetry.plugins."poetry-plugin".scripts]
+HydroRoll = "HydroRoll.__init__:main"