-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (67 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
76 lines (67 loc) · 1.5 KB
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
[build-system]
requires = [
"setuptools",
"wheel",
"cython>=3.2; platform_python_implementation == 'CPython'",
"numpy",
]
build-backend = "setuptools.build_meta"
[project]
name = "pyboy-advance"
version = "1.0.1"
authors = [{ name = "William Ha" }]
description = "Game Boy Advance emulator written in Python"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
keywords = [
"gameboy",
"game boy",
"game boy advance",
"gameboy advance",
"emulator",
"cython",
"pypy"
]
classifiers = [
"Programming Language :: Cython",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: OS Independent",
"Topic :: System :: Emulators",
]
dependencies = [
"pysdl2",
"pysdl2-dll"
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-check",
"pillow",
"numpy",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["pyboy_advance**"]
[tool.setuptools.package-data]
"*" = [
"**/*.pxi",
"**/*.pyx",
"**/*.pxd",
]
[tool.cibuildwheel]
skip = ["cp38-*", "cp39-*", "*-win32", "*-manylinux_i686", "*-musllinux_*"]
test-extras = ["test"]
test-sources = ["tests"]
[project.scripts]
pyboy_advance = "pyboy_advance.__main__:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
filterwarnings = [
"ignore:Using SDL2 binaries from pysdl2-dll.*",
"ignore:pysdl2-dll is installed as source-only.*"
]
[tool.ruff]
line-length = 100