From 318f7bcd39eb024cf1cb6b7ca545eaea05af6d3b Mon Sep 17 00:00:00 2001 From: jan Date: Fri, 3 Jul 2020 13:37:10 -0700 Subject: [PATCH] avoid importing the package before it's installed --- lethe.py | 2 +- setup.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/lethe.py b/lethe.py index 6154516..d0a4ab9 100755 --- a/lethe.py +++ b/lethe.py @@ -13,7 +13,7 @@ import sys __author__ = 'Jan Petykeiwicz' -version = 0.7 +__version__ = '0.8' def _run(command: str or List[str], **kwargs): diff --git a/setup.py b/setup.py index 4f65088..fffcae1 100644 --- a/setup.py +++ b/setup.py @@ -1,13 +1,12 @@ #!/usr/bin/env python3 from setuptools import setup -import lethe with open('README.md', 'r') as f: long_description = f.read() setup(name='lethe', - version=lethe.version, + version='0.8', description='Git-based snapshotting', long_description=long_description, long_description_content_type='text/markdown',