blob: a4c42cb11dcac3b1787e4a9d679e91bf38302b44 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
[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",
"openai>=1.108.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"]
|