-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 973 Bytes
/
pyproject.toml
File metadata and controls
30 lines (27 loc) · 973 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
27
28
29
30
[tool.poetry]
name = "Lattice Summaries"
version = "0.2.0"
description = "Framework to generate comparable summaries for different lattice files"
authors = ["Felix Andreas <fandreas@physik.hu-berlin.de>"]
[tool.poetry.dependencies]
python = "^3.8"
doit = "^0.33.1"
tomlkit = "^0.7.2"
matplotlib = "^3.4.2"
numpy = "^1.20.3"
# apace = { path = "../../andreasfelix/apace", develop = true }
# eleganttools = { path = "../eleganttools", develop = true }
# LatticeJSON = { path = "../../latticejson/", develop = true
apace = { git = "https://github.com/andreasfelix/apace.git", branch = "main" }
eleganttools = { git = "https://github.com/nobeam/eleganttools.git", branch = "main" }
LatticeJSON = "^0.1.5"
cpymad = "^1.6.2"
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
black = { version = "^21.5b2", allow-prereleases = true }
pylint = "^2.8.3"
rope = "^0.19.0"
isort = "^5.8.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"