-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (54 loc) · 1.36 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
[project]
name = "romsearch"
version = "0.1.2"
description = "One Stop ROM Shop"
readme = "README.md"
requires-python = ">=3.11"
license = {file = "LICENSE"}
authors = [
{name = "bbtufty"},
]
maintainers = [
{name = "bbtufty"},
]
classifiers = [
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 3 - Alpha",
# License
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"colorlog == 6.9.0",
"discordwebhook == 1.0.3",
"iso639-lang == 2.5.1",
"numpy == 2.2.2",
"packaging == 24.2",
"pathvalidate == 3.2.3",
"PySide6 == 6.8.1",
"pyyaml == 6.0.2",
"wget == 3.2",
"xmltodict == 0.14.2",
]
[project.optional-dependencies]
docs = [
"sphinx-automodapi == 0.18.0",
"sphinx-rtd-theme == 3.0.2",
]
[project.urls]
"Homepage" = "https://github.com/bbtufty/romsearch"
"Bug Reports" = "https://github.com/bbtufty/romsearch/issues"
"Source" = "https://github.com/bbtufty/romsearch"
[build-system]
requires = [
"setuptools>=43.0.0",
"wheel>=0.43.0",
"setuptools_scm>=8.1.0",
]
build-backend = "setuptools.build_meta"