-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
96 lines (88 loc) · 2.65 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#
# Copyright (c) 2020-2024 Julian Heinovski <[email protected]>
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
[tool.poetry]
name = "plafosim"
version = "0.17.3"
description = "A simple and scalable simulator for platoon formation."
license = "GPL-3.0-or-later"
authors = [
"Julian Heinovski <[email protected]>",
"Dominik S. Buse <[email protected]",
]
maintainers = [
"Julian Heinovski <[email protected]>",
]
readme = "README.md"
homepage = "https://www.plafosim.de"
repository = "https://github.com/heinovski/plafosim"
documentation = "https://plafosim.readthedocs.io/"
keywords = [
"Algorithm",
"Engineering",
"Experiment",
"Platoon",
"Platoon Formation",
"Platooning",
"Platoon Maneuver",
"Research",
"Science",
"Simulation",
"Simulator",
]
classifiers = [
"Development Status :: 4 - Beta", # TODO set to stable with release 1.0.0
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
packages = [
{ include = "plafosim", from="src" },
]
include = [
"CHANGELOG",
"LICENSE",
]
[tool.poetry.urls]
Changelog = "https://github.com/heinovski/plafosim/blob/master/CHANGELOG.md"
[tool.poetry.dependencies]
python = "^3.7, <3.10" # 3.10 is not yet possible due to incompatible dependencies
# These packages are mandatory and form the core of this package’s distribution.
numpy = "^1.19"
ortools = "^9.0"
pandas = "^1.1"
tqdm = "^4.61"
[tool.poetry.dev-dependencies]
flake8 = "^4.0.1"
isort = "^5.10.1"
matplotlib = "^3.4"
pydocstyle = "^6.3.0"
pytest = "^6.2"
seaborn = "^0.11"
statsmodels = "^0.12"
[tool.poetry.scripts]
plafosim = "plafosim.cli.plafosim:main"
plafosim-replay = "plafosim.cli.trace_replay:main"
plafosim-img2video = "plafosim.cli.img2video:main"
# with poetry 1.2, we can be more flexible, since it will introduce the exec plugin
# see https://github.com/python-poetry/poetry/issues/241
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"