From 54d382f190c8c165b0b9da0676ff45b7307b3076 Mon Sep 17 00:00:00 2001 From: Profitroll <47523801+profitrollgame@users.noreply.github.com> Date: Thu, 22 Sep 2022 15:57:58 +0200 Subject: [PATCH] Project tree changes --- PythonRMV/__init__.py => __init__.py | 3 +-- {PythonRMV/raw => raw}/__init__.py | 0 {PythonRMV/raw => raw}/boardArrival.py | 0 {PythonRMV/raw => raw}/boardDeparture.py | 0 {PythonRMV/raw => raw}/findRoute.py | 0 {PythonRMV/raw => raw}/himSearch.py | 0 {PythonRMV/raw => raw}/journeyDetail.py | 0 {PythonRMV/raw => raw}/stopByCoords.py | 0 {PythonRMV/raw => raw}/stopByName.py | 0 setup.py | 4 ---- 10 files changed, 1 insertion(+), 6 deletions(-) rename PythonRMV/__init__.py => __init__.py (98%) rename {PythonRMV/raw => raw}/__init__.py (100%) rename {PythonRMV/raw => raw}/boardArrival.py (100%) rename {PythonRMV/raw => raw}/boardDeparture.py (100%) rename {PythonRMV/raw => raw}/findRoute.py (100%) rename {PythonRMV/raw => raw}/himSearch.py (100%) rename {PythonRMV/raw => raw}/journeyDetail.py (100%) rename {PythonRMV/raw => raw}/stopByCoords.py (100%) rename {PythonRMV/raw => raw}/stopByName.py (100%) diff --git a/PythonRMV/__init__.py b/__init__.py similarity index 98% rename from PythonRMV/__init__.py rename to __init__.py index b9c5761..591cc0d 100644 --- a/PythonRMV/__init__.py +++ b/__init__.py @@ -37,5 +37,4 @@ actually sophisticated. But remember, that I wrote all of that without sophistic __version__ = "0.1" __author__ = "Profitroll" -from .main import * -import raw \ No newline at end of file +from . import raw \ No newline at end of file diff --git a/PythonRMV/raw/__init__.py b/raw/__init__.py similarity index 100% rename from PythonRMV/raw/__init__.py rename to raw/__init__.py diff --git a/PythonRMV/raw/boardArrival.py b/raw/boardArrival.py similarity index 100% rename from PythonRMV/raw/boardArrival.py rename to raw/boardArrival.py diff --git a/PythonRMV/raw/boardDeparture.py b/raw/boardDeparture.py similarity index 100% rename from PythonRMV/raw/boardDeparture.py rename to raw/boardDeparture.py diff --git a/PythonRMV/raw/findRoute.py b/raw/findRoute.py similarity index 100% rename from PythonRMV/raw/findRoute.py rename to raw/findRoute.py diff --git a/PythonRMV/raw/himSearch.py b/raw/himSearch.py similarity index 100% rename from PythonRMV/raw/himSearch.py rename to raw/himSearch.py diff --git a/PythonRMV/raw/journeyDetail.py b/raw/journeyDetail.py similarity index 100% rename from PythonRMV/raw/journeyDetail.py rename to raw/journeyDetail.py diff --git a/PythonRMV/raw/stopByCoords.py b/raw/stopByCoords.py similarity index 100% rename from PythonRMV/raw/stopByCoords.py rename to raw/stopByCoords.py diff --git a/PythonRMV/raw/stopByName.py b/raw/stopByName.py similarity index 100% rename from PythonRMV/raw/stopByName.py rename to raw/stopByName.py diff --git a/setup.py b/setup.py index 93f9804..a85a2a3 100644 --- a/setup.py +++ b/setup.py @@ -5,10 +5,6 @@ setup( version="0.1", author="Profitroll", description="Small module that makes your journey with RMV REST API somehow easier.", - packages=[ - "PythonRMV", - "PythonRMV/raw" - ], install_requires=[ "requests", "xmltodict"