We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab7198d commit fcfa4a0Copy full SHA for fcfa4a0
setup.py
@@ -1,11 +1,13 @@
1
import setuptools
2
+from os import path
3
-with open('README.md', 'r') as fh:
4
- long_description = fh.read()
+this_directory = path.abspath(path.dirname(__file__))
5
+with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
6
+ long_description = f.read()
7
8
setuptools.setup(
9
name='abel',
- version='0.0.3',
10
+ version='0.0.4',
11
author='Hunan Rostomyan',
12
author_email='hunan131@gmail.com',
13
description='Machine learning components',
0 commit comments