Fix classifiers in setup.py

This commit is contained in:
Simon Segerblom Rex 2019-05-21 10:42:25 +02:00
parent 9b0c6214aa
commit 4f99a1ff18
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',
],
)