-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
61 lines (54 loc) · 1.44 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
[project]
name = "ff7r-trainer"
description = "Cheat trainer for Final Fantasy VII Remake Intergrade"
readme = "readme.md"
version = "0.1b1"
dependencies = [
"Cython >= 3.0.10",
"DateTime >= 5.5",
"keyboard >= 0.13.5",
"logging >= 0.4.9.6",
"Pymem >= 1.13.1",
"pytz >= 2024.1",
"typing >= 3.7.4.3",
"zope.interface >= 6.4.post2",
]
requires-python = ">= 3.10"
authors = [
{name = "RogueAutomata", email = "[email protected]"},
]
classifiers = [
"Private :: Do Not Upload",
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.10",
]
keywords = ["cheats", "games", "final fantasy"]
[project.urls]
Repository = "https://github.com/mepley1/ff7r-trainer"
Homepage = "https://mepley.net"
[project.optional-dependencies]
dev = [
"Cython >= 3.0.10",
]
[build-system]
requires = [
"setuptools",
"Cython >= 3.0.10",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.cython]
annotate = true # Optional: Include annotations
# List Cython modules to build
ext_modules = ["app.gui", "app.settings", "app.offsets"]
language_level = 3 # Optional: Set the Cython language level
[tool.setuptools]
packages = ["app"]
package-dir = {"" = "."}
zip-safe = false
include-package-data = true
[project.scripts]
trainer = "app.gui:main"
current_party = "app.gui:PartyMember.current_party"
party_info = "app.gui:CheatTrainer.display_party_info"