Skip to content
This repository has been archived by the owner on Aug 15, 2022. It is now read-only.

Commit

Permalink
v0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
iiSeymour committed Feb 19, 2020
1 parent 1a6cf25 commit 12fe31a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 3 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
include LICENSE.txt requirements.txt README.md
include README.md
include LICENSE.txt
include requirements.txt
2 changes: 1 addition & 1 deletion pyguppyclient/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.0.4'
__version__ = '0.0.5'

from pyguppyclient.io import *
from pyguppyclient.caller import Caller
Expand Down
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
with open('requirements.txt') as f:
requirements = f.read().splitlines()

with open('README.md', encoding='utf-8') as f:
long_description = f.read()

setup(
name=__pkg_name__,
Expand All @@ -26,4 +28,6 @@
url="https://github.com/nanoporetech/pyguppyclient",
packages=find_packages(),
install_requires=requirements,
long_description=long_description,
long_description_content_type='text/markdown',
)

0 comments on commit 12fe31a

Please sign in to comment.