Skip to content

Commit

Permalink
Added the lox folder to MANIFEST
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianPugh committed Jun 18, 2019
1 parent 6ff4a21 commit 71936ad
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
History
=======

0.3.2 (2019-06-17)
------------------

* Fix manifest for installation from wheel

0.3.1 (2019-06-17)
------------------

Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
graft lox
include AUTHORS.rst
include CONTRIBUTING.rst
include HISTORY.rst
Expand Down
4 changes: 2 additions & 2 deletions lox/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 *
5 changes: 0 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 71936ad

Please sign in to comment.