summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorAndrew Guschin <guschin@altlinux.org>2024-10-15 19:57:34 +0400
committerAndrew Guschin <guschin@altlinux.org>2024-10-15 19:57:34 +0400
commit3562ed767dbddfbcac321c7006962e1283eb63af (patch)
treeb42e18d7513eda62ad8ddeabe96cf4ebc109f56d /pyproject.toml
parenta9f89b6a3fd22da90b58d3f2353b5965957531a3 (diff)
add files for rye project manager
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml26
1 files changed, 26 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..e9088fd
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,26 @@
+[project]
+name = "basealt-bot-frontend"
+version = "0.1.0"
+description = "Add your description here"
+authors = [
+ { name = "Andrew Guschin", email = "guschin@altlinux.org" }
+]
+dependencies = [
+ "python-telegram-bot==12.3.0",
+ "requests==2.22.0",
+]
+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
+
+[tool.hatch.build.targets.wheel]
+packages = ["src/basealt_bot_frontend"]