-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (59 loc) · 1.75 KB
/
pyproject.toml
File metadata and controls
66 lines (59 loc) · 1.75 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
[project]
name = "mdmodels"
version = "0.3.0"
description = "Python package for the MDModels Rust crate"
authors = [{ name = "Jan Range", email = "range.jan@web.de" }]
requires-python = ">=3.11"
readme = "README.md"
license = "MIT"
dependencies = [
"mdmodels-core>=0.2.9,<0.3",
"pydantic-xml>=2.12.1,<3",
"bigtree>=0.21.1,<0.22",
"validators>=0.34.0,<0.35",
"httpx>=0.28,<0.29",
"python-jsonpath>=1.2.0,<2",
"rich>=13.9.4,<14",
"nest-asyncio>=1.6.0,<2",
"dotted-dict>=1.1.3,<2",
"python-forge>=18.6.0,<19",
"toml>=0.10.2",
"typer>=0.20.0",
"dotenv>=0.9.9",
"pandas>=2.2.3",
"astropy>=6.1.7",
]
[project.scripts]
mdmodels = "mdmodels.cli:app"
[project.optional-dependencies]
chat = ["openai>=1.57.0,<2", "tabulate>=0.9.0,<0.10"]
graph = ["neomodel>=5.4.0,<6"]
postgres = ["psycopg2-binary>=2.9.11", "sqlmodel>=0.0.22,<0.0.23"]
mcp = ["fastmcp>=2.13.3", "toon-format==0.9.0b1"]
rest = ["fastapi>=0.123.8", "pyyaml>=6.0.3", "uvicorn>=0.38.0"]
graphql = ["strawberry-graphql>=0.296.0", "uvicorn>=0.38.0"]
mysql = ["pymysql>=1.1.2", "sqlmodel>=0.0.22"]
sqlserver = ["pyodbc>=5.3.0", "sqlmodel>=0.0.22"]
pgvector = [
"fastembed>=0.7.3",
"pgvector>=0.4.1",
"psycopg2-binary>=2.9.11",
"sentence-transformers>=2.2.2,<3",
"sqlmodel>=0.0.22,<0.0.23",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
markers = [
"expensive: marks tests as expensive (deselect with '-m \"not expensive\"')",
]
[dependency-groups]
dev = ["pytest-cov>=6.3.0", "pytest-httpx>=0.35.0", "pytest-sugar>=1.1.1"]
[[tool.uv.index]]
explicit = true
name = "testpypi"
publish-url = "https://test.pypi.org/legacy/"
url = "https://test.pypi.org/simple/"
[tool.uv]
prerelease = "allow"