-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 826 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 826 Bytes
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
[project]
name = "ctx"
version = "1.0.0"
description = "CTX (Context Transfer Format) converter and service"
license = "Apache-2.0"
authors = [{name = "Fox Valley AI Foundation"}]
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.115",
"uvicorn[standard]>=0.34",
"httpx>=0.28",
"lxml>=5.0",
"readability-lxml>=0.8",
"beautifulsoup4>=4.12",
"pydantic>=2.10",
"redis>=5.0",
"click>=8.1",
]
[project.scripts]
ctx-convert = "ctx.cli.convert:main"
ctx-parse = "ctx.cli.parse:main"
[project.optional-dependencies]
dev = ["pytest>=8.0", "pytest-asyncio>=0.24", "pytest-httpx>=0.35"]
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]