-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (67 loc) · 1.55 KB
/
pyproject.toml
File metadata and controls
76 lines (67 loc) · 1.55 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dspy-cli"
version = "0.1.13"
description = "A CLI tool for creating and serving DSPy projects"
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [
{name = "DSPy CLI Contributors"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"dspy-ai>=3.0.3",
"click>=8.0",
"fastapi>=0.100",
"uvicorn[standard]>=0.20",
"pyyaml>=6.0",
"python-dotenv>=1.0",
"pydantic>=2.0",
"requests>=2.28",
"fastmcp>=2.0.0",
"asgi-lifespan>=2.0.0",
"apscheduler>=3.10.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.21",
"httpx>=0.24", # For testing FastAPI
"black>=23.0",
"ruff>=0.1.0",
]
docs = [
"mkdocs>=1.6.0",
"mkdocs-material>=9.5.0",
"mkdocstrings[python]>=0.24.0",
"pymdown-extensions>=10.7.0",
]
[project.scripts]
dspy-cli = "dspy_cli.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
dspy_cli = ["templates/**/*", "templates/**/.*"]
[tool.black]
line-length = 120
target-version = ["py39"]
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.pytest.ini_options]
testpaths = ["tests"]
[dependency-groups]
dev = [
"docker>=7.1.0",
"python-multipart>=0.0.20",
"pytest>=7.4.0",
]