Commit 202c55dc authored by Julien Muchembled's avatar Julien Muchembled

For GitLab: CHANGES.txt -> CHANGELOG.rst, README.txt -> README.rst

parent eb0246c2
include CHANGES.txt include CHANGELOG.rst
...@@ -6,13 +6,13 @@ version = '0.14.5' ...@@ -6,13 +6,13 @@ version = '0.14.5'
def read(*rnames): def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read() with open(os.path.join(os.path.dirname(__file__), *rnames)) as f:
return f.read()
long_description = ( long_description = (
read('README.txt') read('README.rst')
+ '\n' + + '\n' +
read('CHANGES.txt') read('CHANGELOG.rst')
) )
additional_install_requires = [] additional_install_requires = []
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment