Skip to content

Commit

Permalink
Merge pull request #19 from infinite-Joy/bug18.missingreadme
Browse files Browse the repository at this point in the history
read readme from the elasticmock package file.
  • Loading branch information
vrcmarcos committed Mar 6, 2019
2 parents 57f004b + f8cf93c commit e9c8495
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@

import setuptools

__version__ = '1.3.4'
__version__ = '1.3.5'

with open("README.md", "r") as fh:
long_description = fh.read()
# read the contents of your readme file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), 'r') as f:
long_description = f.read()

setuptools.setup(
name='ElasticMock',
Expand Down

0 comments on commit e9c8495

Please sign in to comment.