-
Notifications
You must be signed in to change notification settings - Fork 22
/
pyproject.toml
81 lines (72 loc) · 2.02 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
# Package ######################################################################
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "mate"
description = "MATE: The Multi-Agent Tracking Environment."
readme = "README.md"
requires-python = ">= 3.7"
authors = [{ name = "Xuehai Pan", email = "[email protected]" }]
license = { text = "MIT" }
keywords = [
"Multi-Agent",
"Reinforcement Learning",
"RL",
"MARL",
"Deep Learning",
"OpenAI Gym",
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"numpy >= 1.17.0",
"scipy >= 1.0.0",
"gym >= 0.13.0, < 1.0a",
"pyglet >= 1.3.0",
"pyyaml >= 5.1",
"tqdm >= 4.11.0",
"typing-extensions",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/XuehaiPan/mate"
Repository = "https://github.com/XuehaiPan/mate"
Documentation = "https://mate-gym.readthedocs.io"
"Bug Report" = "https://github.com/XuehaiPan/mate/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["mate", "mate.*"]
[tool.setuptools.package-data]
assets = [
"assets/*.yaml",
"assets/*.yml",
"assets/*.json",
"assets/*.txt",
"assets/images/*.png",
]
# Linter tools #################################################################
[tool.black]
safe = true
line-length = 100
skip-string-normalization = true
target-version = ["py37", "py38", "py39", "py310"]
[tool.isort]
profile = "black"
src_paths = ["mate", "examples"]
indent = 4
line_length = 100
lines_after_imports = 2
multi_line_output = 3