refer to README instead of README.rst in setup.py

Fixes #64
This commit is contained in:
Klaas Bosteels
2014-03-20 10:21:38 +01:00
committed by Honza Král
parent 49b7a1aca9
commit 937f68fe33
+1 -1
View File
@@ -8,7 +8,7 @@ VERSION = (1, 0, 1)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))
f = open(join(dirname(__file__), 'README.rst'))
f = open(join(dirname(__file__), 'README'))
long_description = f.read().strip()
f.close()