-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (50 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
59 lines (50 loc) · 1.05 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
58
59
[project]
name = "modrage"
version = "0.1.0"
requires-python = ">=3.12"
dependencies = [
"aiohttp>=3.13.2",
"asyncio>=4.0.0",
"click>=8.3.1",
"dotenv>=0.9.9",
"fastapi[standard]<=0.124.4",
"langchain-chroma<=1.1.0",
"langchain-community<=0.4.1",
"langchain-core<=1.2.0",
"langchain-openai<=1.1.3",
"numpy>=2.3.5",
"pre-commit>=4.5.0",
"pydantic>=2.12.5",
"pypdf>=6.5.0",
"pyyaml>=6.0.3",
"requests>=2.32.5",
]
[dependency-groups]
dev = [
"pytest>=9.0.2",
]
docs = [
"mkdocs>=1.6.1",
"mkdocs-material>=9.7.1",
"mkdocs-to-pdf>=0.10.1",
"mkdocstrings[python]>=1.0.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
[build-system]
requires = ["setuptools>=69"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-data]
modrage = ["py.typed"]
[tool.setuptools.packages.find]
include = [
"modrage",
"modrage.*",
]
[tool.basedpyright]
reportExplicitAny = false
[project.scripts]
modrage = "modrage.cli:cli"
[tool.ruff]
exclude = ["tests"]