generated from Justintime50/python-template
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
97 lines (90 loc) · 2.39 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[project]
name = "libretro.py"
dynamic = ["version"]
description = "A libretro frontend for Python intended for testing cores."
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT License"}
authors = [
{name = "Jesse Talavera", email = "[email protected]"},
]
maintainers = [
{name = "Jesse Talavera", email = "[email protected]"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Environment :: Console :: Framebuffer",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Programming Language :: C",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Games/Entertainment",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing",
]
keywords = ["libretro", "retroarch", "emulation", "testing", "retrogaming"]
dependencies = [
"typing_extensions == 4.*; python_version < '3.12'",
]
[project.optional-dependencies]
build = [
'build == 1.2.1',
'setuptools>=69.1.1',
'twine == 5.0.0',
'pre-commit == 3.7.*',
]
cli = [
'typer == 0.12.5',
]
dev = [
'bandit == 1.7.*',
'black == 24.*',
'flake8 == 6.*',
'isort == 5.*',
'mypy == 1.5.*',
"libretro.py[build]"
]
docs = [
'Sphinx == 7.*',
'sphinx-autobuild == 2024.*',
'sphinx-copybutton == 0.5.2',
'furo',
]
doc = ["libretro.py[docs]"] # Alias for the docs extra
opengl = [
'moderngl[headless] >= 5.12',
'PyOpenGL == 3.1.*',
]
opengl-window = [
'moderngl-window == 2.4.*',
"libretro.py[opengl]"
]
all = ["libretro.py[build,cli,dev,docs,opengl,opengl-window]"]
[project.urls]
Homepage = "https://github.com/JesseTG/libretro.py"
Issues = "https://github.com/JesseTG/libretro.py/issues"
Repository = "https://github.com/JesseTG/libretro.py"
Changelog = "https://github.com/JesseTG/libretro.py/blob/master/CHANGELOG.md"
[build-system]
requires = [
'build == 1.2.1',
'setuptools>=69.1.1',
'twine == 5.0.0',
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 99
[tool.bandit]
# Don't flag asserts
skips = ["B101"]
[tool.isort]
profile = "black"