2020-06-02 22:48:57 +01:00
|
|
|
[tool.poetry]
|
|
|
|
name = "core"
|
2020-08-21 19:35:55 +01:00
|
|
|
version = "7.1.0"
|
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-07-14 20:49:40 +01:00
|
|
|
include = ["core/gui/data/**/*", "core/configservices/*/templates"]
|
2020-06-02 22:48:57 +01:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.6"
|
2020-07-29 00:34:05 +01:00
|
|
|
dataclasses = { version = "*", python = "~3.6" }
|
2020-08-22 04:52:59 +01:00
|
|
|
fabric = "2.5.0"
|
2020-07-10 20:05:11 +01:00
|
|
|
grpcio = "1.27.2"
|
2020-08-22 04:52:59 +01:00
|
|
|
invoke = "1.4.1"
|
|
|
|
lxml = "4.5.1"
|
|
|
|
mako = "1.1.3"
|
|
|
|
netaddr = "0.7.19"
|
|
|
|
pillow = "7.1.2"
|
|
|
|
protobuf = "3.12.2"
|
|
|
|
pyproj = "2.6.1.post1"
|
|
|
|
pyyaml = "5.3.1"
|
2020-06-02 22:48:57 +01:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
black = "==19.3b0"
|
2020-08-22 04:52:59 +01:00
|
|
|
flake8 = "3.8.2"
|
2020-07-13 16:58:32 +01:00
|
|
|
grpcio-tools = "1.27.2"
|
2020-08-22 04:52:59 +01:00
|
|
|
isort = "4.3.21"
|
|
|
|
mock = "4.0.2"
|
|
|
|
pre-commit = "2.1.1"
|
|
|
|
pytest = "5.4.3"
|
2020-06-02 22:48:57 +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"
|
|
|
|
|