Skip to content

Commit

Permalink
🐛 no MANIFEST.in
Browse files Browse the repository at this point in the history
  • Loading branch information
CrescentApricot committed Nov 10, 2018
1 parent 0846df7 commit 865cd9e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ with open("target_file.unity3d.lz4", "rb") as f:
if lz4unipy.is_compressed(data):
with open("target_file.unity3d", "wb") as w:
w.write(lz4unipy.decompress(data))

with open("target_file.unity3d", "rb") as f:
data = f.read()
if not lz4unipy.is_compressed(data):
Expand All @@ -41,7 +41,7 @@ with open("target_file.unity3d", "rb") as f:
## Test

```bash
git clone [email protected]/Cryptomelone/lz4unipy.git
git clone [email protected]/CrescentApricot/lz4unipy.git
cd lz4unipy
pip3 install -r requirements.txt
python3 setup.py test
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@

setup(
name='lz4unipy',
version='1.0.0',
version='1.0.1',
description='unity3d compatible lz4 pack/unpack library working on Python3.',
long_description=readme,
author='Cryptomelone',
author_email='cryptomelone@users.noreply.github.com',
author='CrescentApricot',
author_email='crescentapricot@users.noreply.github.com',
license=li,
url='https://github.com/Cryptomelone/lz4unipy',
url='https://github.com/CrescentApricot/lz4unipy',
packages=find_packages(exclude=('tests',)),
install_requires=["lz4"],
entry_points={
Expand Down

0 comments on commit 865cd9e

Please sign in to comment.