Skip to content

Commit

Permalink
Fix setup.py errors
Browse files Browse the repository at this point in the history
  • Loading branch information
hamidfzm committed Mar 30, 2020
1 parent 407fd68 commit 121187e
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,18 @@
"""

from setuptools import setup
from os import path

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

setup(
name='Flask-HTMLmin',
version='2.0.2',
version='2.0.3',
url='https://github.com/hamidfzm/Flask-HTMLmin',
license='BSD-3-Clause',
author='Hamid FzM',
author_email='[email protected]',
description=__doc__,
description="Minify flask text/html mime type responses",
long_description=long_description,
long_description_content_type='text/markdown',
py_modules=['HTMLMIN'],
Expand Down

0 comments on commit 121187e

Please sign in to comment.