-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
46 lines (39 loc) · 1.2 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
[project]
name = "bluesky-gym"
version = "0.1.0"
dependencies = [
"bluesky-simulator",
"torch==2.2.0",
"pygame==2.5.2",
"gymnasium",
"stable-baselines3==2.2.1",
"numpy==1.24",
"bluesky-simulator",
]
authors = [
{ name="Jan Groot", email="[email protected]" },
{ name="Joost Ellerbroek", email="[email protected]" },
{ name="Giulia Leto", email="[email protected]" },
{ name="Sasha Vlaskin", email="[email protected]" },
]
description = "A gymnasium style environment for standardized Reinforcement Learning research in Air Traffic Management."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/TUDelft-CNS-ATM/bluesky-gym"
Issues = "https://github.com/TUDelft-CNS-ATM/bluesky-gym/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
include = [
"bluesky_gym/*",
]