Skip to content

Commit ff749a4

Browse files
committed
fix action?
1 parent 112b097 commit ff749a4

2 files changed

Lines changed: 36 additions & 45 deletions

File tree

build/setup.py

Lines changed: 0 additions & 45 deletions
This file was deleted.

setup.py

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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+
)

0 commit comments

Comments
 (0)