-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (49 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
57 lines (49 loc) · 1.11 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
55
56
57
[project]
name = "ai-tools-website"
version = "0.1.0"
description = "AI Tools Website"
requires-python = ">=3.12"
dependencies = [
"python-dotenv>=1.0.1",
"diskcache>=5.6.3",
"tavily-python>=0.5.0",
"python-fasthtml>=0.12.1",
"uvicorn",
"minio>=7.2.15",
"httpx>=0.28.1",
"beautifulsoup4>=4.13.3",
"langsmith>=0.3.8",
"click>=8.1.8",
"ipykernel>=6.29.5",
"openai>=1.66.2",
"langchain-core>=0.3.46",
"pydantic-ai>=0.0.42",
"croniter>=4.0.0",
"pytest>=8.3.0",
"pytest-cov>=5.0.0",
"ruff>=0.6.8",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
packages = ["ai_tools_website"]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["I", "E", "F", "Q000"]
ignore = []
[tool.ruff.lint.isort]
force-single-line = true
[tool.ruff.lint.flake8-quotes]
docstring-quotes = "double"
inline-quotes = "double"
multiline-quotes = "double"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "lf"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-v --cov"