diff --git a/responder/__version__.py b/responder/__version__.py index 67bc602..9c73af2 100644 --- a/responder/__version__.py +++ b/responder/__version__.py @@ -1 +1 @@ -__version__ = "1.3.0" +__version__ = "1.3.1" diff --git a/setup.py b/setup.py index 788d03c..156c9fb 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ required = [ "graphql-server-core>=1.1", "jinja2", "parse", - "uvloop ; sys_platform != 'win32' and sys_platform != 'cygwin' and sys_platform != 'cli'", + "uvloop; sys_platform != 'win32' and sys_platform != 'cygwin' and sys_platform != 'cli'", "rfc3986", "python-multipart", "chardet", @@ -122,21 +122,7 @@ setup( url="https://github.com/kennethreitz/responder", packages=find_packages(exclude=["tests"]), entry_points={"console_scripts": ["responder=responder.cli:cli"]}, - package_data={ - # "": ["LICENSE", "NOTICES"], - # "pipenv.vendor.requests": ["*.pem"], - # "pipenv.vendor.certifi": ["*.pem"], - # "pipenv.vendor.click_completion": ["*.j2"], - # "pipenv.patched.notpip._vendor.certifi": ["*.pem"], - # "pipenv.patched.notpip._vendor.requests": ["*.pem"], - # "pipenv.patched.notpip._vendor.distlib._backport": ["sysconfig.cfg"], - # "pipenv.patched.notpip._vendor.distlib": [ - # "t32.exe", - # "t64.exe", - # "w32.exe", - # "w64.exe", - # ], - }, + package_data={}, python_requires=">=3.6", setup_requires=[], install_requires=required,