-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
39 lines (33 loc) · 1.21 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ['og_marl*']
[tool.setuptools.dynamic]
version = {attr = "og_marl.__version__"}
dependencies = {file = ["requirements/datasets.txt"]}
optional-dependencies = {tf2_baselines = { file = ["requirements/baselines.txt"] }}
[project]
name = "og-marl"
readme = "README.md"
description = "Off-the-Grid MARL: Datasets and Baselines for offline MARL Research."
authors = [
{name = "Claude Formanek"},
]
dynamic = ["version", "dependencies", "optional-dependencies"]
license = {file = "LICENSE"}
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Apache Software License",
]
[project.urls]
"Homepage" = "https://github.com/instadeepai/og-marl"
"Bug Tracker" = "https://github.com/instadeepai/og-marl/issues"