2023-05-25 10:31:37 +01:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["setuptools", "setuptools-scm", "wheel"]
|
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
|
|
[project]
|
|
|
|
|
name = "primaite"
|
|
|
|
|
description = "PrimAITE (Primary-level AI Training Environment) is a simulation environment for training AI under the ARCD programme."
|
2023-07-21 14:00:50 +01:00
|
|
|
authors = [{name="Defence Science and Technology Laboratory UK", email="oss@dstl.gov.uk"}]
|
2023-07-27 11:40:29 +01:00
|
|
|
license = {file = "LICENSE"}
|
2024-05-01 17:06:58 +01:00
|
|
|
requires-python = ">=3.8, <3.12"
|
2023-05-25 10:31:37 +01:00
|
|
|
dynamic = ["version", "readme"]
|
|
|
|
|
classifiers = [
|
2023-08-15 11:14:23 +01:00
|
|
|
"License :: OSI Approved :: MIT License",
|
2023-07-21 16:49:17 +01:00
|
|
|
"Development Status :: 5 - Production/Stable",
|
2023-05-25 10:31:37 +01:00
|
|
|
"Operating System :: Microsoft :: Windows",
|
|
|
|
|
"Operating System :: MacOS",
|
|
|
|
|
"Operating System :: POSIX :: Linux",
|
|
|
|
|
"Operating System :: Unix",
|
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
|
"Programming Language :: Python :: 3.10",
|
2024-05-01 17:06:58 +01:00
|
|
|
"Programming Language :: Python :: 3.11",
|
2023-05-25 10:31:37 +01:00
|
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
dependencies = [
|
2023-10-25 17:04:30 +01:00
|
|
|
"gymnasium==0.28.1",
|
2023-06-09 16:44:49 +01:00
|
|
|
"jupyterlab==3.6.1",
|
2023-06-30 11:40:26 +01:00
|
|
|
"kaleido==0.2.1",
|
2023-05-25 10:31:37 +01:00
|
|
|
"matplotlib==3.7.1",
|
|
|
|
|
"networkx==3.1",
|
|
|
|
|
"numpy==1.23.5",
|
2023-06-08 15:57:38 +01:00
|
|
|
"platformdirs==3.5.1",
|
2023-06-30 09:08:13 +01:00
|
|
|
"plotly==5.15.0",
|
2024-05-31 13:47:02 +01:00
|
|
|
"polars==0.20.30",
|
2023-08-08 20:30:37 +01:00
|
|
|
"prettytable==3.8.0",
|
2023-05-25 10:31:37 +01:00
|
|
|
"PyYAML==6.0",
|
2023-07-28 14:49:21 +01:00
|
|
|
"typer[all]==0.9.0",
|
2024-04-22 08:49:08 +01:00
|
|
|
"pydantic==2.7.0",
|
2024-05-30 12:31:35 +00:00
|
|
|
"ipywidgets",
|
|
|
|
|
"deepdiff"
|
2023-05-25 10:31:37 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[tool.setuptools.dynamic]
|
|
|
|
|
version = {file = ["src/primaite/VERSION"]}
|
|
|
|
|
readme = {file = ["README.md"]}
|
|
|
|
|
|
|
|
|
|
[tool.setuptools]
|
|
|
|
|
package-dir = {"" = "src"}
|
|
|
|
|
include-package-data = true
|
2023-07-27 11:40:29 +01:00
|
|
|
license-files = ["LICENSE"]
|
2023-05-25 10:31:37 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
2024-05-29 14:54:45 +01:00
|
|
|
rl = [
|
2024-05-31 15:25:08 +01:00
|
|
|
"ray[rllib] >= 2.20.0, < 3",
|
2024-05-29 14:54:45 +01:00
|
|
|
"tensorflow==2.12.0",
|
|
|
|
|
"stable-baselines3[extra]==2.1.0",
|
|
|
|
|
]
|
2023-05-25 10:31:37 +01:00
|
|
|
dev = [
|
2023-06-08 15:57:38 +01:00
|
|
|
"build==0.10.0",
|
2023-05-25 10:31:37 +01:00
|
|
|
"flake8==6.0.0",
|
2023-07-31 16:47:13 +01:00
|
|
|
"flake8-annotations",
|
2024-02-16 16:14:36 +00:00
|
|
|
"furo==2024.01.29",
|
2023-07-20 10:28:19 +01:00
|
|
|
"gputil==1.4.0",
|
2023-05-25 10:31:37 +01:00
|
|
|
"pip-licenses==4.3.0",
|
2023-05-25 10:52:29 +01:00
|
|
|
"pre-commit==2.20.0",
|
2023-07-20 08:48:18 +01:00
|
|
|
"pylatex==1.4.1",
|
2023-06-08 15:57:38 +01:00
|
|
|
"pytest==7.2.0",
|
2023-07-12 12:04:26 +01:00
|
|
|
"pytest-xdist==3.3.1",
|
2023-06-08 15:57:38 +01:00
|
|
|
"pytest-cov==4.0.0",
|
|
|
|
|
"pytest-flake8==1.1.1",
|
|
|
|
|
"setuptools==66",
|
2024-02-26 08:44:08 +00:00
|
|
|
"Sphinx==7.1.2",
|
2023-06-08 15:57:38 +01:00
|
|
|
"sphinx-copybutton==0.5.2",
|
2024-05-17 11:17:00 +01:00
|
|
|
"wheel==0.38.4",
|
|
|
|
|
"nbsphinx==0.9.4"
|
2023-06-08 15:57:38 +01:00
|
|
|
]
|
2023-06-07 22:40:16 +01:00
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
|
primaite = "primaite.cli:app"
|
2023-06-30 09:08:13 +01:00
|
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
|
profile = "black"
|
2023-06-30 16:52:57 +01:00
|
|
|
line_length = 120
|
2023-06-30 09:08:13 +01:00
|
|
|
force_sort_within_sections = "False"
|
|
|
|
|
order_by_type = "False"
|
|
|
|
|
|
|
|
|
|
[tool.black]
|
2023-06-30 16:52:57 +01:00
|
|
|
line-length = 120
|
2023-07-26 21:11:15 +01:00
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
|
Homepage = "https://github.com/Autonomous-Resilient-Cyber-Defence/PrimAITE"
|
|
|
|
|
Documentation = "https://Autonomous-Resilient-Cyber-Defence.github.io/PrimAITE/"
|
|
|
|
|
Repository = "https://github.com/Autonomous-Resilient-Cyber-Defence/PrimAITE"
|
|
|
|
|
Changelog = "https://github.com/Autonomous-Resilient-Cyber-Defence/PrimAITE/blob/dev/CHANGELOG.md"
|