diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2021-06-04 22:24:46 +0530 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2021-06-04 22:24:46 +0530 |
commit | 5b52deffd64c58f0d95f8e9d6e54b3353f7b599e (patch) | |
tree | 8c0220c26edea348bf9d9cb28f7be05a9a30d16d | |
parent | 7ecfc4bafc75a125c73e03bd630f065d9e4ed40c (diff) |
added flask-admin
-rw-r--r-- | Pipfile | 3 | ||||
-rw-r--r-- | Pipfile.lock | 9 | ||||
-rw-r--r-- | requirements.txt | 11 |
3 files changed, 21 insertions, 2 deletions
@@ -14,10 +14,11 @@ flask-wtf = "*" email-validator = "*" flask-bcrypt = "*" flask-login = "*" +flask-admin = "*" [requires] python_version = "3.8" [scripts] tests = "python -m pytest" -tests-codecov = "python -m pytest --cov=./ --cov-report=xml"
\ No newline at end of file +tests-codecov = "python -m pytest --cov=./ --cov-report=xml" diff --git a/Pipfile.lock b/Pipfile.lock index 7d4e5fe..3c7666c 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "e8ecd5033564188fe8fcfac40b6c2acc6626e1df402d4f09327a4b76e86c9d7b" + "sha256": "3601793574b240c6ed19bba8c86b7818a5a41c6d96dc6308795fbb4fb367740a" }, "pipfile-spec": 6, "requires": { @@ -115,6 +115,13 @@ "index": "pypi", "version": "==2.0.1" }, + "flask-admin": { + "hashes": [ + "sha256:eb06a1f31b98881dee53a55c64faebd1990d6aac38826364b280df0b2679ff74" + ], + "index": "pypi", + "version": "==1.5.8" + }, "flask-bcrypt": { "hashes": [ "sha256:d71c8585b2ee1c62024392ebdbc447438564e2c8c02b4e57b56a4cafd8d13c5f" diff --git a/requirements.txt b/requirements.txt index 62a13dc..3039739 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,13 @@ +# +# These requirements were autogenerated by pipenv +# To regenerate from the project's Pipfile, run: +# +# pipenv lock --requirements --dev +# + +# Note: in pipenv 2020.x, "--dev" changed to emit both default and development +# requirements. To emit only development requirements, pass "--dev-only". + -i https://pypi.org/simple attrs==21.2.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4' bcrypt==3.2.0; python_version >= '3.6' @@ -8,6 +18,7 @@ click==8.0.1; python_version >= '3.6' coverage[toml]==5.5; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4' and python_version < '4' dnspython==2.1.0; python_version >= '3.6' email-validator==1.1.2 +flask-admin==1.5.8 flask-bcrypt==0.7.1 flask-login==0.5.0 flask-sqlalchemy==2.5.1 |