avoid importing the package before it's installed

lethe/HEAD
jan 4 years ago
parent b12cf290f1
commit 318f7bcd39

@ -13,7 +13,7 @@ import sys
__author__ = 'Jan Petykeiwicz' __author__ = 'Jan Petykeiwicz'
version = 0.7 __version__ = '0.8'
def _run(command: str or List[str], **kwargs): def _run(command: str or List[str], **kwargs):

@ -1,13 +1,12 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
from setuptools import setup from setuptools import setup
import lethe
with open('README.md', 'r') as f: with open('README.md', 'r') as f:
long_description = f.read() long_description = f.read()
setup(name='lethe', setup(name='lethe',
version=lethe.version, version='0.8',
description='Git-based snapshotting', description='Git-based snapshotting',
long_description=long_description, long_description=long_description,
long_description_content_type='text/markdown', long_description_content_type='text/markdown',

Loading…
Cancel
Save