Skip to content

Commit

Permalink
List Py3.9 support in distribution metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
Stuart Bishop committed Nov 2, 2020
1 parent 513450f commit 7d0205f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/setup.py
Expand Up @@ -18,8 +18,7 @@
for dirpath, dirnames, filenames in os.walk(os.path.join('pytz', 'zoneinfo')):
# remove the 'pytz' part of the path
basepath = dirpath.split(os.path.sep, 1)[1]
resources.extend([os.path.join(basepath, filename)
for filename in filenames])
resources.extend([os.path.join(basepath, filename) for filename in filenames])
package_data = {'pytz': resources}

assert len(resources) > 10, 'zoneinfo files not found!'
Expand All @@ -41,7 +40,7 @@
package_data=package_data,
download_url='https://pypi.org/project/pytz/',
platforms=['Independent'],
classifiers = [
classifiers=[
'Development Status :: 6 - Mature',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
Expand All @@ -63,6 +62,7 @@
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)

0 comments on commit 7d0205f

Please sign in to comment.