Skip to content

Commit

Permalink
change way that README is read in
Browse files Browse the repository at this point in the history
  • Loading branch information
mankyd committed Feb 20, 2013
1 parent 6beb06f commit 4cd9939
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion htmlmin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@

from .main import minify, Minifier

__version__ = '0.1.3'
__version__ = '0.1.4'
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
import os
from setuptools import setup, find_packages

from htmlmin import __version__

README = open('README.rst').read()
LICENSE = open('LICENSE').read()
here = os.path.dirname(__file__)

README = open(os.path.join(here, 'README.rst')).read()
LICENSE = open(os.path.join(here, 'LICENSE')).read()

setup(
name='htmlmin',
Expand Down

0 comments on commit 4cd9939

Please sign in to comment.