-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (25 loc) · 753 Bytes
/
pyproject.toml
File metadata and controls
29 lines (25 loc) · 753 Bytes
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
[project]
name = "pynds"
version = "0.0.3"
description = "Python interface for emulated Nintendo DS"
requires-python = ">=3.9"
license= {file = "LICENSE"}
authors = [{ name = "unexploredtest", email = "unexploredtest@tutanota.com" }]
classifiers=[
"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.14",
]
dependencies = [
"numpy",
"pygame"
]
dynamic = ["readme"]
[project.urls]
Homepage = "https://github.com/unexploredtest/PyNDS"
[build-system]
requires = ["setuptools", "numpy"]
build-backend = "setuptools.build_meta"