-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathpyproject.toml
46 lines (40 loc) · 1.55 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "m64py"
description = "A frontend for Mupen64Plus"
dynamic = ["version"]
readme = "README.rst"
license = {text = "GNU GPLv3"}
requires-python = ">=3.9"
keywords = ["emulator", "nintendo64"]
authors = [{name = "Milan Nikolic", email = "gen2brain@gmail.com"}]
dependencies = ["PyQt6", "PySDL2"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Games/Entertainment",
"Intended Audience :: End Users/Desktop",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux"
]
[project.urls]
Homepage = "https://m64py.sourceforge.net"
Repository = "https://github.com/mupen64plus/mupen64plus-ui-python"
Issues = "https://github.com/mupen64plus/mupen64plus-ui-python/issues"
Changelog = "https://raw.githubusercontent.com/mupen64plus/mupen64plus-ui-python/refs/heads/master/CHANGELOG"
[tool.setuptools]
script-files = ["bin/m64py"]
package-dir = {"" = "src"}
exclude-package-data = { "*" = ["*.jpg", "*.png", "*.svg", "*.ts"]}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.data-files]
"share/icons/hicolor/256x256/apps" = ["xdg/net.sourceforge.m64py.M64Py.png"]
"share/applications" = ["xdg/net.sourceforge.m64py.M64Py.desktop"]
"share/metainfo" = ["xdg/net.sourceforge.m64py.M64Py.metainfo.xml"]
[tool.setuptools.dynamic]
version = {attr = "m64py.core.defs.FRONTEND_VERSION"}