2020-06-02 22:48:57 +01:00
|
|
|
[tool.poetry]
|
|
|
|
name = "core"
|
2023-03-02 05:51:05 +00:00
|
|
|
version = "9.0.2"
|
2020-07-14 20:13:41 +01:00
|
|
|
description = "CORE Common Open Research Emulator"
|
2020-07-14 20:33:13 +01:00
|
|
|
authors = ["Boeing Research and Technology"]
|
2020-07-14 20:13:41 +01:00
|
|
|
license = "BSD-2-Clause"
|
|
|
|
repository = "https://github.com/coreemu/core"
|
|
|
|
documentation = "https://coreemu.github.io/core/"
|
2020-09-11 23:05:49 +01:00
|
|
|
include = [
|
|
|
|
"core/api/grpc/*",
|
|
|
|
"core/configservices/*/templates",
|
|
|
|
"core/constants.py",
|
|
|
|
"core/gui/data/**/*",
|
|
|
|
]
|
|
|
|
exclude = ["core/constants.py.in"]
|
|
|
|
|
2022-07-28 00:00:10 +01:00
|
|
|
[tool.poetry.scripts]
|
|
|
|
core-daemon = "core.scripts.daemon:main"
|
|
|
|
core-cli = "core.scripts.cli:main"
|
|
|
|
core-gui = "core.scripts.gui:main"
|
|
|
|
core-player = "core.scripts.player:main"
|
|
|
|
core-route-monitor = "core.scripts.routemonitor:main"
|
|
|
|
core-service-update = "core.scripts.serviceupdate:main"
|
|
|
|
core-cleanup = "core.scripts.cleanup:main"
|
2020-06-02 22:48:57 +01:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2022-10-13 18:15:38 +01:00
|
|
|
python = "^3.9"
|
|
|
|
fabric = "2.7.1"
|
2023-07-07 16:57:45 +01:00
|
|
|
grpcio = "1.54.2"
|
2023-02-27 20:49:39 +00:00
|
|
|
invoke = "1.7.3"
|
2022-10-13 18:15:38 +01:00
|
|
|
lxml = "4.9.1"
|
2020-08-22 04:52:59 +01:00
|
|
|
netaddr = "0.7.19"
|
2022-11-28 18:17:44 +00:00
|
|
|
protobuf = "4.21.9"
|
2022-10-13 18:15:38 +01:00
|
|
|
pyproj = "3.3.1"
|
2023-03-03 18:00:59 +00:00
|
|
|
Pillow = "9.4.0"
|
2022-10-13 18:15:38 +01:00
|
|
|
Mako = "1.2.3"
|
2023-07-25 18:53:08 +01:00
|
|
|
PyYAML = "6.0.1"
|
2020-06-02 22:48:57 +01:00
|
|
|
|
2023-02-03 23:46:52 +00:00
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
pytest = "6.2.5"
|
2023-07-07 16:57:45 +01:00
|
|
|
grpcio-tools = "1.54.2"
|
2023-02-03 23:46:52 +00:00
|
|
|
black = "22.12.0"
|
2020-08-22 04:52:59 +01:00
|
|
|
flake8 = "3.8.2"
|
|
|
|
isort = "4.3.21"
|
|
|
|
mock = "4.0.2"
|
|
|
|
pre-commit = "2.1.1"
|
2022-10-13 05:28:19 +01:00
|
|
|
|
2020-07-14 21:24:16 +01:00
|
|
|
[tool.isort]
|
|
|
|
skip_glob = "*_pb2*.py,doc,build"
|
|
|
|
multi_line_output = 3
|
|
|
|
include_trailing_comma = "True"
|
|
|
|
force_grid_wrap = 0
|
|
|
|
use_parentheses = "True"
|
|
|
|
line_length = 88
|
|
|
|
|
2020-07-14 21:33:40 +01:00
|
|
|
[tool.black]
|
|
|
|
line_length = 88
|
|
|
|
exclude = ".+_pb2.*.py|doc/|build/|__pycache__/"
|
|
|
|
|
2020-06-02 22:48:57 +01:00
|
|
|
[build-system]
|
|
|
|
requires = ["poetry>=0.12"]
|
|
|
|
build-backend = "poetry.masonry.api"
|
|
|
|
|