Skip to content

Commit

Permalink
update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
brycedrennan committed Jan 12, 2024
1 parent 73ed767 commit 4a5918e
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,28 @@
""".strip(),
long_description=long_description,
long_description_content_type="text/markdown",
author="Bryce Drennan, CircleUp",
author="Bryce Drennan",
author_email="aresponses@brycedrennan.com ",
url="https://github.com/circleup/aresponses",
download_url="https://github.com/circleup/aresponses/tarball/" + __version__,
url="https://github.com/aresponses/aresponses",
download_url="https://github.com/aresponses/aresponses/tarball/" + __version__,
keywords=["asyncio", "testing", "responses"],
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
],
python_requires=">=3.8",
python_requires=">=3.7",
install_requires=[
"aiohttp==3.*,>=3.1.0",
"pytest-asyncio>=0.17.0"
'aiohttp<3.9.0,>=3.1.0; python_version>="3.7" and python_version<"3.8"',
'aiohttp>=3.6.0; python_version>="3.8" and python_version<"3.10"',
'aiohttp>=3.7.0; python_version>="3.10" and python_version<"3.12"',
'aiohttp>=3.7.0,!=3.8.*; python_version>="3.12"',
'pytest-asyncio==0.16.0; python_version<"3.7"',
'pytest-asyncio>=0.17.0; python_version>="3.7"',
],
# the following makes a plugin available to pytest
entry_points={"pytest11": ["aresponses = aresponses.main"]},
Expand Down

0 comments on commit 4a5918e

Please sign in to comment.