-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
32 lines (24 loc) · 899 Bytes
/
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
[tool.poetry]
name = "alphamelts"
version = "0.1.0"
description = ""
authors = []
readme = "README.md"
packages = []
[tool.poetry.group.main.dependencies]
python = "^3.10"
[tool.poetry.group.app.dependencies]
alphamelts-app = { path = "workspaces/app", develop = true}
[tool.poetry.group.lib.dependencies]
alphamelts-lib = { path = "workspaces/lib", develop = true}
[tool.poetry.group.lib-test.dependencies]
alphamelts-lib = { path = "workspaces/lib", develop = true, extras=["test"]}
[tool.poetry.group.cli.dependencies]
alphamelts-cli = { path = "workspaces/cli", develop = true}
[tool.poetry.group.mat.dependencies]
alphamelts-mat = { path = "workspaces/mat", develop = true}
[tool.poetry.group.py.dependencies]
alphamelts-py = { path = "workspaces/py", develop = true}
[build-system]
requires = ["poetry-core", "setuptools", "setuptools-cpp"]
build-backend = "poetry.core.masonry.api"