From 71936adebc41b16270d1d5cd639f36f5df6e4a56 Mon Sep 17 00:00:00 2001 From: Brian Pugh Date: Mon, 17 Jun 2019 19:57:49 -0700 Subject: [PATCH] Added the lox folder to MANIFEST --- HISTORY.rst | 5 +++++ MANIFEST.in | 1 + lox/__init__.py | 4 ++-- setup.py | 5 ----- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 3ffb5ec..bc5cb1e 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,11 @@ History ======= +0.3.2 (2019-06-17) +------------------ + +* Fix manifest for installation from wheel + 0.3.1 (2019-06-17) ------------------ diff --git a/MANIFEST.in b/MANIFEST.in index 9a7b1e8..ed69d48 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,4 @@ +graft lox include AUTHORS.rst include CONTRIBUTING.rst include HISTORY.rst diff --git a/lox/__init__.py b/lox/__init__.py index ba3f6d6..6d98a86 100644 --- a/lox/__init__.py +++ b/lox/__init__.py @@ -8,5 +8,5 @@ __email__ = 'bnp117@gmail.com' __version__ = '0.3.1' -from lox.lock import * -from lox.worker import * +from .lock import * +from .worker import * diff --git a/setup.py b/setup.py index 39f709d..326583c 100644 --- a/setup.py +++ b/setup.py @@ -32,11 +32,6 @@ 'Programming Language :: Python :: 3.7', ], description="Threading and Multiprocessing for every project.", - entry_points={ - 'console_scripts': [ - 'lox=lox.cli:main', - ], - }, install_requires=requirements, license="MIT license", long_description=readme + '\n\n' + history,