Skip to content

Commit

Permalink
Parse readme for pypi description
Browse files Browse the repository at this point in the history
  • Loading branch information
hunan-rostomyan committed Jul 1, 2018
1 parent ab7198d commit fcfa4a0
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
import setuptools
from os import path

with open('README.md', 'r') as fh:
long_description = fh.read()
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setuptools.setup(
name='abel',
version='0.0.3',
version='0.0.4',
author='Hunan Rostomyan',
author_email='[email protected]',
description='Machine learning components',
Expand Down

0 comments on commit fcfa4a0

Please sign in to comment.