-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
67 lines (59 loc) · 1.18 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude=["*tests*", "*examples*", "*htmlcov*"]
[tool.setuptools.package-data]
static = ["hipposerve/web/static/*.svg", "hipposerve/web/templates/*.html"]
[project]
name = "hipposerve"
version = "0.0.1a7"
requires-python = ">=3.11"
dependencies = [
"pydantic",
"pydantic-settings",
# 4.1.0 and above introduce a deprecation warning
# that breaks the latest versions of asyncer.
"anyio<4.1.0",
"asyncer",
"fastapi",
"uvicorn",
"beanie",
"minio",
"jinja2",
"xxhash",
"jinja-markdown",
"typer",
"httpx",
"astropy",
"pyjwt",
"pwdlib[argon2]",
"python-multipart",
"loguru",
"tqdm",
"textual[syntax]"
]
[project.optional-dependencies]
dev = [
"pytest",
"ruff",
"testcontainers",
"coverage",
"pytest-cov",
"pytest-asyncio",
"pytest-xprocess"
]
[project.scripts]
henry = "hippoclient.cli:main"
[tool.ruff.lint]
extend-select = ["I"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.coverage.run]
source = [
"hipposerve",
"hippoclient"
]
omit = [
"hipposerve/web/*"
]