Skip to content

Commit

Permalink
add scripts to setup
Browse files Browse the repository at this point in the history
  • Loading branch information
seiya-git committed Nov 22, 2023
1 parent 83c1057 commit 58a2164
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions build/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,28 @@

setuptools.setup(
name = 'nstools',
version = '1.1.5.dev4',
version = '1.1.5.dev5',
url = 'https://github.com/seiya-dev/NSTools',
long_description = long_description,
long_description_content_type = 'text/markdown',
packages=['nstools.Fs', 'nstools.nut', 'nstools.lib'],
install_requires=[
license = 'MIT',

scripts = [
'ns_verify_folder.py'
],

packages = [
'nstools.Fs',
'nstools.nut',
'nstools.lib'
],
install_requires = [
'zstandard',
'enlighten',
'pycryptodome',
],

python_requires = '>=3.10',
zip_safe = False,
zip_safe = True,
include_package_data = True,
)

0 comments on commit 58a2164

Please sign in to comment.