-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (53 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
47
48
49
50
51
52
53
54
55
56
57
58
59
[project]
name = "retropy"
version = "0.1.0"
description = "Python(ic) frontend for libretro cores"
authors = [
{name = "29th-Day", email = "[email protected]"},
]
dependencies = [
"gymnasium>=0.29.1",
]
requires-python = ">=3.12"
readme = "README.md"
license = {text = "MIT"}
# https://pypi.org/classifiers/
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Games/Entertainment",
"Typing :: Typed",
]
[project.optional-dependencies]
dev = [
"black>=23.12.0",
"numpy>=1.26.2",
"mkdocs-material>=9.5.2",
"mkdocstrings[python]>=0.24.0",
"mkdocs-gen-files>=0.5.0",
"mkdocs-literate-nav>=0.6.1",
"mkdocs-section-index>=0.3.8",
]
numpy = [
"numpy>=1.26.2",
]
gym = [
"gymnasium>=0.29.1",
"numpy>=1.26.2",
]
pygame = [
"pygame>=2.5.2",
"numpy>=1.26.2",
]
pyglet = [
"pyglet>=2.0.10",
"numpy>=1.26.2",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project.urls]
Homepage = "https://github.com/29th-Day/retropy"