File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ import setuptools
2+ from pathlib import Path
3+
4+ root = Path (__file__ ).parent
5+
6+ setuptools .setup (
7+ name = "nstools" ,
8+ version = "1.2.3" ,
9+ url = "https://github.com/seiya-dev/NSTools" ,
10+ long_description = (root / "README.md" ).read_text (encoding = "utf-8" ),
11+ long_description_content_type = "text/markdown" ,
12+ license = "MIT" ,
13+ license_files = ["LICENSE.md" ],
14+
15+ package_dir = {"" : "py" }, # relative to setup.py
16+ packages = setuptools .find_packages (where = "py" ),
17+
18+ scripts = [
19+ "build/bin/ns-verify-folder" ,
20+ "build/bin/ns-verify-folder-log" ,
21+ "build/bin/ns-verify-folder.bat" ,
22+ "build/bin/ns-verify-folder-log.bat" ,
23+ "build/ns_verify_folder.py" ,
24+ ],
25+
26+ install_requires = [
27+ "zstandard" ,
28+ "enlighten" ,
29+ "requests" ,
30+ "pycryptodome" ,
31+ ],
32+
33+ python_requires = ">=3.10" ,
34+ zip_safe = True ,
35+ include_package_data = True ,
36+ )
You can’t perform that action at this time.
0 commit comments