-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (46 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
54 lines (46 loc) · 1.19 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "hypothesis-validator"
version = "0.1.0"
description = "A multi-agent hypothesis validation system using Claude Agent SDK"
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
authors = [
{ name = "Hypothesis Validator Team" }
]
keywords = ["hypothesis", "validation", "agents", "claude", "ai"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"claude-agent-sdk>=0.1.0",
"pydantic>=2.0",
"rich>=13.0.0",
"python-dotenv>=1.0.0",
"anyio>=4.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"ruff>=0.1.0",
]
[project.scripts]
hypothesis-validator = "hypothesis_validator.main:main"
[tool.hatch.build.targets.wheel]
packages = ["src/hypothesis_validator"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]