Skip to content

Commit

Permalink
fix python classifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
jtarang authored Oct 21, 2020
1 parent 7e7f4d2 commit db9ce0b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
author_email="[email protected]",
description='Async HTTP Client',
classifiers=[
"Programming Language :: Python :: 3.5"
"Programming Language :: Python :: 3.6"
"Programming Language :: Python :: 3.7"
"Programming Language :: Python :: 3.8"
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
python_requires=">=3.5",
packages=find_packages(exclude=[]),
install_requires=requirements
)
)

0 comments on commit db9ce0b

Please sign in to comment.