forked from puiterwijk/flask-oidc
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate from Travis CI to Github Actions for deploys
- Loading branch information
Showing
2 changed files
with
6 additions
and
29 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
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 |
---|---|---|
|
@@ -4,6 +4,8 @@ | |
|
||
from setuptools import setup | ||
|
||
__VERSION__ = "1.4.5" | ||
|
||
# This check is to make sure we checkout docs/_themes before running sdist | ||
if not os.path.exists("./docs/_themes/README"): | ||
print("Please make sure you have docs/_themes checked out while running setup.py!") | ||
|
@@ -31,7 +33,7 @@ | |
url="https://github.com/svintit/flask-oidc-ext", | ||
author="Erica Ehrhardt, Patrick Uiterwijk, Traian Svinti", | ||
author_email="[email protected]", | ||
version="1.4.5", | ||
version=__VERSION__, | ||
packages=["flask_oidc_ext"], | ||
install_requires=[ | ||
"Flask", | ||
|