forked from rrooij/sd3save_editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 675 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 675 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(name='sd3save_editor',
author='rrooij',
author_email='rderooij685@gmail.com',
url='https://github.com/rrooij/sd3save_editor',
version='0.6.0',
license="GPL-3.0",
description='Seiken Densetsu 3 Save Editor',
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts': [
'sd3save_editor_cli = sd3save_editor.__main__:main'
],
'gui_scripts': [
'sd3save_editor_gui = sd3save_editor.gui.__main__:main'
]
},
install_requires=['construct', 'scalpl']
)