Commit a1db64c1 authored by Tres Seaver's avatar Tres Seaver

Use '.rst' for changelog.

Fix typo in Trove classifiers.
parent 1688e10b
...@@ -8,13 +8,13 @@ here = os.path.abspath(os.path.dirname(__file__)) ...@@ -8,13 +8,13 @@ here = os.path.abspath(os.path.dirname(__file__))
try: try:
with open(os.path.join(here, 'README.rst')) as f: with open(os.path.join(here, 'README.rst')) as f:
README = f.read() README = f.read()
except: except IOError:
README = '' README = ''
try: try:
with open(os.path.join(here, 'CHANGES.txt')) as f: with open(os.path.join(here, 'CHANGES.rst')) as f:
CHANGES = f.read() CHANGES = f.read()
except: except IOError:
CHANGES = '' CHANGES = ''
requires = ['ZODB', 'ZConfig', 'ZEO'] requires = ['ZODB', 'ZConfig', 'ZEO']
...@@ -38,7 +38,7 @@ setup(name='zodburi', ...@@ -38,7 +38,7 @@ setup(name='zodburi',
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6",
"License :: Repoze Public License", "License :: Repoze Public License",
], ],
keywords='zodb zodbconn', keywords='zodb zodbconn',
......
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