-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
29 lines (26 loc) · 1005 Bytes
/
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "h2h-galleryinfo-parser"
version = "0.2.2"
description = "A simple H@H GalleryInfo Parser"
readme = "README.md"
authors = [{ name = "Kuan-Lun Wang" }]
license = { text = "GNU Affero General Public License v3" }
dependencies = []
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Programming Language :: Python :: 3.13",
]
[project.urls]
Homepage = "https://github.com/Kuan-Lun/h2h-galleryinfo-parser"
Source = "https://github.com/Kuan-Lun/h2h-galleryinfo-parser"
Tracker = "https://github.com/Kuan-Lun/h2h-galleryinfo-parser/issues"
[tool.setuptools]
packages = ["h2h_galleryinfo_parser"]
package-dir = { h2h_galleryinfo_parser = "src/galleryinfo_parser" }
package-data = { h2h_galleryinfo_parser = ["py.typed"] }