-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (39 loc) · 1.13 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
[project]
name = "uspkg"
version = "0.0.1"
authors = [
{ name = "DrapNard", email = "haimirgaming@gmail.com" }
]
description = "A simple library for the creation, verification, and extraction of the USPkg package format."
readme = "README.md" # Or the detailed form: { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
]
dependencies = [
"msgpack>=1.0",
"cryptography>=41.0",
"tqdm>=4.64",
"pillow>=9.0",
"zipp>=3.0"
]
[project.urls]
Homepage = "https://github.com/DrapNard/UndergoundStore-Package-Library"
Issues = "https://github.com/DrapNard/UndergoundStore-Package-Library/issues"
[project.scripts]
uspkg-cli = "uspkg.uspkg_cli:main"
[project.gui-scripts]
uspkg-gui = "uspkg.uspkg_gui:main"
[project.optional-dependencies]
gui = [
"tkinter",
"pillow",
"threading"
]
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"