add "integration" install option with minimal docs

This commit is contained in:
Paul Ortman
2017-04-17 23:38:53 -05:00
parent a628556690
commit 656bd96c6c
2 changed files with 7 additions and 1 deletions
+3
View File
@@ -31,6 +31,9 @@ This package is in the `Python Package Index
be enough. You can also clone it on `Github
<http://github.com/PyGithub/PyGithub>`__.
If you wish to use GitHub Integrations, you'll want to be sure to install the
'integrations' option: ``pip install PyGithub['integrations']``
Licensing
---------
+4 -1
View File
@@ -96,5 +96,8 @@ if __name__ == "__main__":
use_2to3=True,
install_requires=[
"pyjwt"
]
],
extras_require = {
"integrations": ["cryptography"]
}
)