Skip to content

Commit

Permalink
fix setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
amalfra committed May 27, 2018
1 parent 070824c commit 996e2c2
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ def find_version(*file_paths):
'python-dateutil'
]

with open('README.md', 'rb') as f:
long_descr = f.read().decode('utf-8')
long_descr = open('README.md').read()

setup(
name='docker-hub',
Expand All @@ -47,7 +46,7 @@ def find_version(*file_paths):
packages=find_packages(exclude=['tests.*', 'tests']),
include_package_data=True,
install_requires=install_requires,
setup_requires=['pytest-runner'],
setup_requires=['pytest-runner', 'setuptools>=38.6.0'],
tests_require=['pytest'],
entry_points={
'console_scripts': ['docker-hub=src.__main__:main']
Expand Down

0 comments on commit 996e2c2

Please sign in to comment.