aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-08-27 17:49:43 -0700
committerFuwn <[email protected]>2025-08-27 17:49:43 -0700
commit6650dcfee1c8aefedf7c9330566c0bb7ecb1a1d3 (patch)
tree0fa54793cc077dc75b5086a2badf00457c6c8b25 /pyproject.toml
downloadumabot-6650dcfee1c8aefedf7c9330566c0bb7ecb1a1d3.tar.xz
umabot-6650dcfee1c8aefedf7c9330566c0bb7ecb1a1d3.zip
feat: Initial commit
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml36
1 files changed, 36 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..6577e62
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,36 @@
+[project]
+name = "umabot"
+version = "0.1.0"
+description = "A modular Reddit bot for post moderation"
+authors = [
+ { name = "Fuwn", email = "[email protected]" }
+]
+dependencies = [
+ "praw>=7.7.0",
+ "python-dotenv>=1.0.0",
+ "schedule>=1.2.0",
+ "loguru>=0.7.0",
+]
+readme = "README.md"
+requires-python = ">= 3.8"
+
+[project.scripts]
+"umabot" = "umabot:main"
+
+[build-system]
+requires = ["hatchling"]
+build-backend = "hatchling.build"
+
+[tool.rye]
+managed = true
+dev-dependencies = [
+ "pytest>=7.0.0",
+ "black>=23.0.0",
+ "flake8>=6.0.0",
+]
+
+[tool.hatch.metadata]
+allow-direct-references = true
+
+[tool.hatch.build.targets.wheel]
+packages = ["src/umabot"]