Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
FrederikP committed Apr 16, 2019
1 parent 82733e6 commit 4d0bdfa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.1
1.5.2
11 changes: 4 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,11 @@
import os

here = os.path.abspath(os.path.dirname(__file__))
try:
import pypandoc
long_description = pypandoc.convert_file('README.md', 'rst')
except:
with open(path.join(here, 'README.md')) as f:
long_description = f.read()

from setuptools import setup, find_packages
with open(path.join(here, 'README.md')) as f:
long_description = f.read()

from setuptools import setup, find_packages


with open('%s/VERSION' % here) as f:
Expand All @@ -24,6 +20,7 @@
author_email='fp@abusix.com',
description='ahocorapy - Pure python ahocorasick implementation',
long_description=long_description,
long_description_content_type="text/markdown",
name='ahocorapy',
packages=find_packages('src'),
package_dir={'': 'src'},
Expand Down

0 comments on commit 4d0bdfa

Please sign in to comment.