14 lines
431 B
Python
14 lines
431 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='luma3ds_exception_dump_parser',
|
|
version='1.2',
|
|
url='https://github.com/AuroraWright/Luma3DS',
|
|
author='TuxSH',
|
|
license='GPLv3',
|
|
description='Parses Luma3DS exception dumps',
|
|
install_requires=[''],
|
|
packages=find_packages(),
|
|
entry_points={'console_scripts': ['luma3ds_exception_dump_parser=luma3ds_exception_dump_parser.__main__:main']},
|
|
)
|