forked from fsndzomga/metadspy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
26 lines (22 loc) · 718 Bytes
/
pyproject.toml
File metadata and controls
26 lines (22 loc) · 718 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
[tool.poetry]
name = "metadspy"
version = "0.1.0"
description = ""
authors = ["Franck Stéphane Ndzomga <101533724+fsndzomga@users.noreply.github.com>"]
readme = "README.md"
packages = [ { include = "metadspy", from = "src" } ]
[tool.poetry.dependencies]
python = ">=3.10,<3.14"
typer = ">=0.16.0,<0.17.0"
jinja2 = ">=3.1.6,<4.0.0"
pydantic = ">=2.11.6,<3.0.0"
ruamel-yaml = ">=0.18.14,<0.19.0"
python-dotenv = ">=1.1.0,<2.0.0"
dspy = ">=2.6.27,<3.0.0"
[tool.poetry.dev-dependencies]
pytest = "^8.0"
[tool.poetry.scripts]
metadspy = "metadspy.cli:app"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"