-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (35 loc) · 1.01 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "eidos"
version = "1.0.0"
authors = [
{ name="José F. Aldana Martín", email="jfaldanam@uma.es" },
{ name="Antonio Benítez Hidalgo", email="antonio.b@uma.es" },
]
description = "Validation and execution of AI functions"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Development Status :: 1 - Planning",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"fastapi>=0.103.0",
"structlog",
]
[project.urls]
"Homepage" = "https://github.com/KhaosResearch/eidos"
"Bug Tracker" = "https://github.com/KhaosResearch/eidos/issues"
[project.optional-dependencies]
dev = ["ruff", "pytest", "httpx"]
[tool.pyright]
venv = ".venv"
venvPath = "."