-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (40 loc) · 965 Bytes
/
pyproject.toml
File metadata and controls
48 lines (40 loc) · 965 Bytes
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
38
39
40
41
42
43
44
45
46
47
48
[build-system]
requires = ["hatchling>=1.27.0"]
build-backend = "hatchling.build"
[project]
name = "moltbook-agent"
version = "0.1.0"
description = "Autonomous Moltbook agent"
readme = "readme.md"
requires-python = ">=3.12"
dependencies = [
"apscheduler>=3.10.4,<4.0.0",
"httpx>=0.28.1,<0.29.0",
"pydantic>=2.10.0,<3.0.0",
"pydantic-settings>=2.7.0,<3.0.0",
"pyyaml>=6.0.2,<7.0.0",
"structlog>=24.4.0,<25.0.0",
"tenacity>=9.0.0,<10.0.0",
]
[project.optional-dependencies]
dev = [
"pre-commit>=4.0.1,<5.0.0",
"pyright>=1.1.390,<2.0.0",
"pytest>=8.3.0,<9.0.0",
"ruff>=0.9.0,<1.0.0",
]
[project.scripts]
moltbook-agent = "app.main:run"
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM", "RUF"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
[tool.hatch.build.targets.wheel]
packages = ["app"]