-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (28 loc) · 894 Bytes
/
pyproject.toml
File metadata and controls
28 lines (28 loc) · 894 Bytes
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name="BDSP_ColorVariation_JSONParser"
dynamic = ["version"]
requires-python = ">= 3.11"
dependencies = [
"pillow",
"rich"
]
authors = [{name = "Shararamosh"}]
description = "Console tool for parsing color information from Pokémon BD/SP ColorVariation.json files."
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
"Topic :: Utilities"
]
readme = "README.MD"
[project.urls]
Repository = "https://github.com/Shararamosh/BDSP_ColorVariation_JSONParser.git"
[project.scripts]
json_parser = "BDSP_ColorVariation_JSONParser.json_parser:main"