forked from seiya-dev/NSTools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (30 loc) · 900 Bytes
/
setup.py
File metadata and controls
36 lines (30 loc) · 900 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
29
30
31
32
33
34
35
36
import setuptools
from pathlib import Path
root = Path(__file__).parent
setuptools.setup(
name="nstools",
version="1.2.3",
url="https://github.com/seiya-dev/NSTools",
long_description=(root / "README.md").read_text(encoding="utf-8"),
long_description_content_type="text/markdown",
license="MIT",
license_files=["LICENSE.md"],
package_dir={"": "py"}, # relative to setup.py
packages=setuptools.find_packages(where="py"),
scripts=[
"build/bin/ns-verify-folder",
"build/bin/ns-verify-folder-log",
"build/bin/ns-verify-folder.bat",
"build/bin/ns-verify-folder-log.bat",
"build/ns_verify_folder.py",
],
install_requires=[
"zstandard",
"enlighten",
"requests",
"pycryptodome",
],
python_requires=">=3.10",
zip_safe=True,
include_package_data=True,
)