This repository has been archived by the owner on Jan 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 193
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added pyproject.toml.
- Loading branch information
Showing
3 changed files
with
63 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[build-system] | ||
requires = ["setuptools>=44", "wheel", "setuptools_scm[toml]>=3.4.3"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools_scm] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,59 @@ | ||
[metadata] | ||
name = hyper | ||
version = attr: setup.__version__ | ||
author = Cory Benfield | ||
author_email = [email protected] | ||
license = MIT License | ||
description = HTTP/2 Client for Python | ||
long_description = file: README.rst, HISTORY.rst | ||
url = http://hyper.rtfd.org | ||
classifiers = | ||
Development Status :: 3 - Alpha | ||
Intended Audience :: Developers | ||
License :: OSI Approved :: MIT License | ||
Programming Language :: Python | ||
Programming Language :: Python :: 2 | ||
Programming Language :: Python :: 2.7 | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.4 | ||
Programming Language :: Python :: 3.5 | ||
Programming Language :: Python :: Implementation :: CPython | ||
|
||
[options] | ||
packages = | ||
hyper | ||
hyper.http20 | ||
hyper.common | ||
hyper.http11 | ||
install_requires = | ||
h2>=2.4,<3.0,!=2.5.0 | ||
hyperframe>=3.2,<4.0 | ||
rfc3986>=1.1.0,<2.0 | ||
brotlipy>=0.7.0 | ||
pyOpenSSL>=0.15; python_full_version < "2.7.9" # Fallback to good SSL on bad Python versions. | ||
service_identity>=14.0.0; python_full_version < "2.7.9" | ||
cryptography<1.0; platform_python_implementation == "pypy" and python_full_version < "2.7.9" # PyPy with bad SSL modules will likely also need the cryptography module at lower than 1.0, because it doesn't support CFFI v1.0 yet. | ||
enum34>=1.0.4, <2; python_version == "2.7" or python_version == "3.3" | ||
|
||
include_package_data = True | ||
tests_require = pytest; requests; mock | ||
|
||
[options.entry_points] | ||
console_scripts = hyper = hyper.cli:main | ||
|
||
[options.extras_require] | ||
fast = pycohttpparser | ||
|
||
[options.package_data] | ||
"" = | ||
LICENSE | ||
README.rst | ||
CONTRIBUTORS.rst | ||
HISTORY.rst | ||
NOTICES | ||
|
||
[wheel] | ||
universal = 1 | ||
|
||
[flake8] | ||
max-complexity = 15 | ||
max-complexity = 15 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,7 @@ def run_tests(self): | |
match = re.search(version_regex, text) | ||
|
||
if match: | ||
version = match.group(1) | ||
__version__ = match.group(1) | ||
else: | ||
raise RuntimeError("No version number found!") | ||
|
||
|
@@ -44,59 +44,5 @@ def run_tests(self): | |
sys.exit() | ||
|
||
|
||
packages = [ | ||
'hyper', | ||
'hyper.http20', | ||
'hyper.common', | ||
'hyper.http11', | ||
] | ||
|
||
setup( | ||
name='hyper', | ||
version=version, | ||
description='HTTP/2 Client for Python', | ||
long_description=open('README.rst').read() + '\n\n' + open('HISTORY.rst').read(), | ||
author='Cory Benfield', | ||
author_email='[email protected]', | ||
url='http://hyper.rtfd.org', | ||
packages=packages, | ||
package_data={'': ['LICENSE', 'README.rst', 'CONTRIBUTORS.rst', 'HISTORY.rst', 'NOTICES']}, | ||
package_dir={'hyper': 'hyper'}, | ||
include_package_data=True, | ||
license='MIT License', | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 2', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: Implementation :: CPython', | ||
], | ||
install_requires=[ | ||
'h2>=2.4,<3.0,!=2.5.0', 'hyperframe>=3.2,<4.0', 'rfc3986>=1.1.0,<2.0', 'brotlipy>=0.7.0,<1.0' | ||
], | ||
tests_require=['pytest', 'requests', 'mock'], | ||
cmdclass={'test': PyTest}, | ||
entry_points={ | ||
'console_scripts': [ | ||
'hyper = hyper.cli:main', | ||
], | ||
}, | ||
extras_require={ | ||
'fast': ['pycohttpparser'], | ||
# Fallback to good SSL on bad Python versions. | ||
':python_full_version < "2.7.9"': [ | ||
'pyOpenSSL>=0.15', 'service_identity>=14.0.0' | ||
], | ||
# PyPy with bad SSL modules will likely also need the cryptography | ||
# module at lower than 1.0, because it doesn't support CFFI v1.0 yet. | ||
':platform_python_implementation == "PyPy" and python_full_version < "2.7.9"': [ | ||
'cryptography<1.0' | ||
], | ||
':python_version == "2.7" or python_version == "3.3"': ['enum34>=1.0.4, <2'] | ||
} | ||
) | ||
if __name__ == "__main__": | ||
setup(cmdclass={'test': PyTest}) |