-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 1.3 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "org.bhoehn.modorganizer"
version = "0.1.0"
authors = [{name = "Bryce Hoehn", email = "bryce.hoehn@mailbox.org"}]
maintainers = [{name = "Bryce Hoehn", email = "bryce.hoehn@mailbox.org"}]
description = "Mod manager for various PC games. Ported to Linux."
classifiers = [
"Development Status :: 1 - Planning",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Intended Audience :: End Users/Desktop",
"Topic :: Games/Entertainment",
"Programming Language :: Python",
"Operating System :: POSIX :: Linux",
]
keywords = ["mod organizer manager nexus"]
urls = {Homepage = "https://github.com/bryce-hoehn/modorganizer-linux"}
dependencies = ["PySide6", "fuse-overlayfs", "websocket-client"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.scripts]
modorganizer = "modorganizer.main:main"
[tool.setuptools]
packages = ["modorganizer"]
package-dir = {modorganizer = "src"}
include-package-data = true
[tool.setuptools.data-files]
"share/applications" = ["flatpak/org.bhoehn.modorganizer.desktop"]
"share/icons/hicolor/scalable/apps" = ["flatpak/org.bhoehn.modorganizer.png"]
"share/metainfo" = ["flatpak/org.bhoehn.modorganizer.metainfo.xml"]