-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (52 loc) · 1.14 KB
/
pyproject.toml
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
49
50
51
52
53
54
55
56
57
58
59
60
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "basic-factory"
version = "0.1.0"
description = "AI-assisted software development workflow tools"
readme = "README.md"
requires-python = ">=3.12"
authors = [
{ name = "Basic Machines" },
]
dependencies = [
"pygit2>=1.13.1", # For git operations
"pygithub>=2.1.1", # For GitHub API
"pydantic>=2.5.2",
# For data validation
"typer[all]>=0.13.1",
"anthropic>=0.18.0",
"httpx>=0.27.0", # Required by anthropic client
"fastapi[all]>=0.115.5",
"loguru>=0.7.2",
]
[project.scripts]
basic-factory = "basic_factory.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/basic_factory"]
[tool.ruff]
src = ["src"]
line-length = 88
[tool.uv]
dev-dependencies = [
"pytest>=8.3.3",
"pytest-cov>=6.0.0",
"ruff>=0.8.0",
"basic-factory",
"pytest-asyncio>=0.24.0",
]
[tool.uv.sources]
basic-factory = { workspace = true }
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = [
"tests",
]
python_files = [
"test_*.py",
]
addopts = "-ra -q"
markers = [
"integration: marks tests as integration tests"
]