Skip to content

Commit 2bde182

Browse files
committed
Modernize packaging and remove universal wheel option
1 parent 19d6721 commit 2bde182

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

setup.cfg

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
[bdist_wheel]
2-
universal = 1
3-
41
[easy_install]
52
zip_ok = False
63

setup.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,15 @@ def run_tests(self):
3737
version='0.4.3-dev',
3838
description='Pyramid OAuthLib integration',
3939
long_description=README + '\n\n' + CHANGES,
40+
long_description_content_type="text/x-rst",
4041
classifiers=[
4142
"Programming Language :: Python",
4243
"Programming Language :: Python :: 3",
44+
"Programming Language :: Python :: 3.7",
45+
"Programming Language :: Python :: 3.8",
46+
"Programming Language :: Python :: 3.9",
47+
"Programming Language :: Python :: 3.10",
48+
"Programming Language :: Python :: 3 :: Only",
4349
"Framework :: Pyramid",
4450
"Topic :: Internet :: WWW/HTTP",
4551
"Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware",
@@ -53,6 +59,7 @@ def run_tests(self):
5359
include_package_data=True,
5460
install_requires=['pyramid>=1.4.0', 'oauthlib>=3'],
5561
packages=find_packages(),
62+
python_requires='>=3.7',
5663
setup_requires=['setuptools_git'],
5764
tests_require=['mock', 'pytest', 'pytest-cov'],
5865
zip_safe=False,

0 commit comments

Comments
 (0)