-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
69 lines (63 loc) · 2.17 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
[build-system]
requires = ["setuptools >= 61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "DSSE"
description = "The Drone Swarm Search project provides an environment for SAR missions built on PettingZoo, where agents, represented by drones, are tasked with locating targets identified as shipwrecked individuals."
readme = "README.md"
dynamic = ["version"]
requires-python = ">= 3.10.5"
authors = [
{ name="Ricardo Ribeiro Rodrigues", email="ricardorr7@al.insper.edu.br" },
{ name="Renato Laffranchi Falcão", email="renatolf1@al.insper.edu.br" },
{ name="Pedro Henrique Britto Aragão Andrade", email="pedroa3@al.insper.edu.br" },
{ name="Jorás Oliveira", email="jorascco@al.insper.edu.br" },
{ name="Fabricio Barth", email="fabriciojb@insper.edu.br" },
{ name="Luis Filipe Carrete" },
{ name="Manuel Castanares" },
{ name="Enrico Damiani" },
{ name="Leonardo Malta" },
]
license = { text = "MIT License" }
keywords = ["Reinforcement Learning", "AI", "SAR", "Multi Agent Reinforcement Learning"]
classifiers = [
"Development Status :: 4 - Beta", # change to `5 - Production/Stable` when ready
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
]
dependencies = [
"numpy>=1.23.1",
"gymnasium>=0.27.1",
"pygame>=2.3.0",
"pettingzoo>=1.22.3",
"matplotlib==3.8.4",
"numba>=0.59.0",
]
[project.optional-dependencies]
all = [
"numpy>=1.23.1",
"gymnasium>=0.27.1",
"pygame>=2.3.0",
"pettingzoo>=1.22.3",
"matplotlib==3.8.4",
"numba>=0.59.0",
"GDAL==3.4.1",
"opendrift",
]
coverage = [
"GDAL==3.4.1",
"opendrift",
]
[project.urls]
Homepage = "https://pfeinsper.github.io/drone-swarm-search/"
Repository = "https://github.com/pfeinsper/drone-swarm-search/"
Documentation = "https://pfeinsper.github.io/drone-swarm-search/"
"Bug Report" = "https://github.com/pfeinsper/drone-swarm-search/issues/"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
DSSE = ["*.png"]
[tool.setuptools.packages.find]
include = ["DSSE", "DSSE.*"]