Merge pull request #12 from SimonSegerblomRex/fix-classifiers

Fix classifiers in setup.py
This commit is contained in:
Simon Segerblom Rex 2019-05-21 10:43:42 +02:00 committed by GitHub
commit f531e23162
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 1 deletions

View File

@ -28,6 +28,13 @@ setuptools.setup(
'pikepdf',
],
classifiers=[
'Python :: 3'
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
],
)