-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 1.14 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
38
39
40
41
42
43
44
45
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "bcsfe"
authors = [{ name = "fieryhenry" }]
description = "A save file editor for The Battle Cats"
license = "GPL-3.0-or-later"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Topic :: Utilities",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
]
dependencies = [
"aenum",
"colored==1.4.4",
"pyjwt",
"requests",
"pyyaml",
"beautifulsoup4",
"argparse",
]
dynamic = ["version"]
keywords = ["battle cats", "save editor", "hacking"]
[project.urls]
Homepage = "https://codeberg.org/fieryhenry/BCSFE-Python"
Repository = "https://codeberg.org/fieryhenry/BCSFE-Python"
Issues = "https://codeberg.org/fieryhenry/BCSFE-Python/issues"
Changelog = "https://codeberg.org/fieryhenry/BCSFE-Python/raw/branch/main/CHANGELOG.md"
[tool.setuptools.dynamic]
version = { attr = "bcsfe.__version__" }
[tool.setuptools]
package-dir = { "" = "src" }
[project.scripts]
bcsfe = "bcsfe:run"