-
-
Notifications
You must be signed in to change notification settings - Fork 108
/
Copy pathpyproject.toml
78 lines (71 loc) · 2.16 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "poke_env"
version = "0.8.3"
description = "A python interface for training Reinforcement Learning bots to battle on pokemon showdown."
readme = "README.md"
requires-python = ">=3.9.0"
license = { file = "LICENSE" }
authors = [{ name = "Haris Sahovic", email = "contact@sahovic.fr" }]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Games/Entertainment :: Simulation",
"Topic :: Games/Entertainment :: Turn Based Strategy",
"Topic :: Internet",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"gymnasium>=1.0.0",
"numpy>=2.0.2",
"orjson>=3.10.15",
"pettingzoo>=1.24.3",
"requests>=2.32.3",
"tabulate>=0.9.0",
"websockets==14.2",
]
[project.optional-dependencies]
dev = [
"black==25.1.0",
"flake8>=7.1.1",
"isort==6.0.0",
"mypy>=1.15.0",
"nbsphinx>=0.9.6",
"pre-commit>=4.1.0",
"pytest>=8.3.4",
"pytest-asyncio>=0.25.3",
"pytest-cov>=6.0.0",
"pytest-timeout>=2.3.1",
"sphinx>=7.4.7",
"sphinx-rtd-theme>=3.0.2",
"twine>=6.1.0",
"types-requests>=2.32.0.20241016",
"wheel>=0.45.1",
]
[project.urls]
Documentation = "https://poke-env.readthedocs.io/en/stable/"
Repository = "https://github.com/hsahovic/poke-env"
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.pyright]
include = ["src"]
pythonVersion = "3.7"
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }