diff options
author | David Luevano <55825613+luevano@users.noreply.github.com> | 2019-10-12 00:54:28 -0600 |
---|---|---|
committer | David Luevano <55825613+luevano@users.noreply.github.com> | 2019-10-12 00:54:28 -0600 |
commit | 9aef24e1bba52b3c89203524556d216a62e994a7 (patch) | |
tree | ff31c8b5992e95c82ada9fad59b6deb9c11d03e3 | |
parent | 3b6420bfd00e9a7bc48246b0d9b32f90702e5352 (diff) |
Bug fixes
-rw-r--r-- | setup.py | 7 | ||||
-rw-r--r-- | tirante/__init__.py | 8 | ||||
-rw-r--r-- | tirante/download_manga.py (renamed from tirante/down_man.py) | 0 | ||||
-rw-r--r-- | tirante/version.py (renamed from tirante/__version__.py) | 0 |
4 files changed, 8 insertions, 7 deletions
@@ -31,7 +31,7 @@ import os from setuptools import find_packages, setup -from tirante.__version__ import __version__ +# from tirante.version import __version__ # Package meta-data. NAME = 'tirante' @@ -39,8 +39,9 @@ DESCRIPTION = 'A (wannabe) manga downloader manager.' URL = 'https://github.com/luevano/tirante' EMAIL = 'lorentzeus@gmail.com' AUTHOR = 'David Luevano Alvarado' -REQUIRES_PYTHON = '>=3.7.4' -VERSION = __version__ +REQUIRES_PYTHON = '>=3.7' +# VERSION = __version__ +VERSION = '0.0.1' # What packages are required for this module to be executed? REQUIRED = [ diff --git a/tirante/__init__.py b/tirante/__init__.py index 94608f7..f667c54 100644 --- a/tirante/__init__.py +++ b/tirante/__init__.py @@ -20,10 +20,10 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ -from __version__ import __version__ -from cr_dat import create_database -from up_dat import update_database -from down_man import download_manga +# from version import __version__ +from create_database import create_database +from update_database import update_database +from download_manga import download_manga # If somebody does "from package import *", this is what they will # be able to access: diff --git a/tirante/down_man.py b/tirante/download_manga.py index c216bb7..c216bb7 100644 --- a/tirante/down_man.py +++ b/tirante/download_manga.py diff --git a/tirante/__version__.py b/tirante/version.py index fab5843..fab5843 100644 --- a/tirante/__version__.py +++ b/tirante/version.py |