-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 1.07 KB
/
setup.py
File metadata and controls
37 lines (35 loc) · 1.07 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
from __future__ import annotations
from setuptools import find_packages, setup
setup(
name="pykotor",
version="0.1.0",
description="PyKotor suite of packages",
author="Your Name",
author_email="your.email@example.com",
packages=find_packages(where="Libraries", include=["PyKotor.*", "Utility.*"]),
package_dir={"": "Libraries"},
install_requires=[
"Utility", # Assuming 'Utility' is the name of the utility package
],
extras_require={
"toolset": [
"HolocronToolset",
"HoloPatcher",
"KotorDiff",
"BatchPatcher",
],
},
entry_points={
"console_scripts": [
"holocron-toolset=Tools.HolocronToolset.src.main:main",
"holopatcher=Tools.HoloPatcher.src.main:main",
"kotordiff=Tools.KotorDiff.src.main:main",
"batchpatcher=Tools.BatchPatcher.src.main:main",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
)