From c79f11ee99bca295b8bb9729cd98b1c768d9ca0d Mon Sep 17 00:00:00 2001 From: TuxSH Date: Wed, 16 Aug 2017 19:23:04 +0200 Subject: [PATCH] Change exception dump parser directory structure --- .../__init__.py | 0 .../__main__.py} | 0 exceptions/parser/setup.py | 4 ++-- 3 files changed, 2 insertions(+), 2 deletions(-) rename exceptions/parser/{exception_dump_parser => luma3ds_exception_dump_parser}/__init__.py (100%) rename exceptions/parser/{exception_dump_parser/exception_dump_parser.py => luma3ds_exception_dump_parser/__main__.py} (100%) diff --git a/exceptions/parser/exception_dump_parser/__init__.py b/exceptions/parser/luma3ds_exception_dump_parser/__init__.py similarity index 100% rename from exceptions/parser/exception_dump_parser/__init__.py rename to exceptions/parser/luma3ds_exception_dump_parser/__init__.py diff --git a/exceptions/parser/exception_dump_parser/exception_dump_parser.py b/exceptions/parser/luma3ds_exception_dump_parser/__main__.py similarity index 100% rename from exceptions/parser/exception_dump_parser/exception_dump_parser.py rename to exceptions/parser/luma3ds_exception_dump_parser/__main__.py diff --git a/exceptions/parser/setup.py b/exceptions/parser/setup.py index 88e0cc8..13a6915 100644 --- a/exceptions/parser/setup.py +++ b/exceptions/parser/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages setup( - name='exception_dump_parser', + name='luma3ds_exception_dump_parser', version='1.2', url='https://github.com/AuroraWright/Luma3DS', author='TuxSH', @@ -9,5 +9,5 @@ setup( description='Parses Luma3DS exception dumps', install_requires=[''], packages=find_packages(), - entry_points={'console_scripts': ['exception_dump_parser=exception_dump_parser.exception_dump_parser:main']}, + entry_points={'console_scripts': ['luma3ds_exception_dump_parser=luma3ds_exception_dump_parser.__main__:main']}, )