-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
25 lines (22 loc) · 905 Bytes
/
pyproject.toml
File metadata and controls
25 lines (22 loc) · 905 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
[tool.poetry]
name = "interlocking"
version = "5.1"
description = "A simple yaramo-based interlocking logic"
authors = ["Arne Boockmeyer <arne.boockmeyer@hpi.de>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
yaramo = { git = "https://github.com/simulate-digital-rail/yaramo"}
planpro-importer = { git = "https://github.com/simulate-digital-rail/planpro-importer"}
railway-route-generator = { git = "https://github.com/simulate-digital-rail/railway-route-generator"}
interlocking-logic-monitor = { git = "https://github.com/simulate-digital-rail/interlocking-logic-monitor"}
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
planpro-importer = {git = "https://github.com/simulate-digital-rail/planpro-importer"}
pylint = "^2.15.10"
black = "^22.12.0"
pre-commit = "^3.0.0"
coverage = "^7.2.7"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"