Skip to content

Commit

Permalink
Merge pull request #50 from CircleUp/classifiers
Browse files Browse the repository at this point in the history
add license classifier
  • Loading branch information
brycedrennan committed Oct 2, 2020
2 parents 8237624 + 9584977 commit 7c9f83c
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup

__version__ = "2.0.0"
__version__ = "2.0.1"

setup(
name="aresponses",
Expand All @@ -12,7 +12,12 @@
url="https://github.com/circleup/aresponses",
download_url="https://github.com/circleup/aresponses/tarball/" + __version__,
keywords=["asyncio", "testing", "responses"],
classifiers=["Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8"],
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
],
python_requires=">=3.6",
install_requires=["aiohttp==3.*,>=3.1.0", "pytest-asyncio"],
# the following makes a plugin available to pytest
Expand Down

0 comments on commit 7c9f83c

Please sign in to comment.