-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
24 lines (21 loc) · 787 Bytes
/
pyproject.toml
File metadata and controls
24 lines (21 loc) · 787 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
[tool.poetry]
name = "spectragraph"
version = "0.1.0"
description = "SpectraGraph multi-module project"
authors = ["sr-857 <sr-857@users.noreply.github.com>"]
package-mode = false
[tool.poetry.dependencies]
python = ">=3.12,<4.0"
spectragraph-core = { path = "./spectragraph-core", develop = true }
spectragraph-types = { path = "./spectragraph-types", develop = true }
spectragraph-transforms = { path = "./spectragraph-transforms", develop = true }
spectragraph-api = { path = "./spectragraph-api", develop = true }
pydantic = {extras = ["email"], version = "^2.11.7"}
python-multipart = "^0.0.20"
docker = "^7.1.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.4.2"
pytest-asyncio = "^0.23.8"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"