We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84d1c45 commit 1867c0eCopy full SHA for 1867c0e
setup.cfg
@@ -1,2 +1,8 @@
1
[wheel]
2
universal = 1
3
+
4
+[metadata]
5
+requires-dist=
6
+ pyOpenSSL>=0.13; python_version<="2.7"
7
+ ndg-httpsclient; python_version<="2.7"
8
+ pyasn1; python_version<="2.7"
setup.py
@@ -68,7 +68,7 @@ def run_tests(self):
68
"(http://developer.github.com/v3)"),
69
long_description="\n\n".join([open("README.rst").read(),
70
open("LATEST_VERSION_NOTES.rst").read()]),
71
- license=open('LICENSE').read(),
+ license='3-clause BSD',
72
author="Ian Cordasco",
73
author_email="graffatcolmingov@gmail.com",
74
url="https://github3py.readthedocs.org",
@@ -77,6 +77,7 @@ def run_tests(self):
77
classifiers=[
78
'Development Status :: 5 - Production/Stable',
79
'License :: OSI Approved',
80
+ 'License :: OSI Approved :: BSD License',
81
'Intended Audience :: Developers',
82
'Programming Language :: Python',
83
'Programming Language :: Python :: 2',
@@ -89,7 +90,7 @@ def run_tests(self):
89
90
],
91
extras_require={
92
'test': kwargs['tests_require'],
- ';python_version<="2.7"': SNI_requirements,
93
+ 'sni': SNI_requirements,
94
},
95
cmdclass={'test': PyTest},
96
**kwargs
0 commit comments