2020-12-29 13:10:08 +00:00
|
|
|
#
|
2021-07-19 10:19:43 +01:00
|
|
|
# This file is autogenerated by pip-compile with python 3.6
|
2020-12-29 13:10:08 +00:00
|
|
|
# To update, run:
|
|
|
|
|
#
|
|
|
|
|
# pip-compile requirements.in
|
|
|
|
|
#
|
2021-02-02 17:13:18 +00:00
|
|
|
ago==0.0.93
|
|
|
|
|
# via -r requirements.in
|
2021-05-31 14:54:12 +01:00
|
|
|
awscli==1.19.84
|
2021-02-02 17:13:18 +00:00
|
|
|
# via
|
|
|
|
|
# awscli-cwlogs
|
|
|
|
|
# notifications-utils
|
2021-06-24 12:27:12 +01:00
|
|
|
awscli-cwlogs==1.4.6
|
|
|
|
|
# via -r requirements.in
|
2021-02-09 14:07:01 +00:00
|
|
|
bleach==3.3.0
|
2021-02-02 17:13:18 +00:00
|
|
|
# via notifications-utils
|
|
|
|
|
blinker==1.4
|
|
|
|
|
# via
|
|
|
|
|
# -r requirements.in
|
|
|
|
|
# gds-metrics
|
2021-05-31 14:54:12 +01:00
|
|
|
boto3==1.17.84
|
2021-02-02 17:13:18 +00:00
|
|
|
# via notifications-utils
|
2021-05-31 14:54:13 +01:00
|
|
|
botocore==1.20.84
|
2021-02-02 17:13:18 +00:00
|
|
|
# via
|
|
|
|
|
# awscli
|
|
|
|
|
# boto3
|
|
|
|
|
# s3transfer
|
2021-05-31 14:54:13 +01:00
|
|
|
cachetools==4.2.2
|
2021-02-02 17:13:18 +00:00
|
|
|
# via notifications-utils
|
2021-05-31 14:54:14 +01:00
|
|
|
certifi==2021.5.30
|
2021-02-02 17:13:18 +00:00
|
|
|
# via requests
|
Support registering a new authenticator
This adds Yubico's FIDO2 library and two APIs for working with the
"navigator.credentials.create()" function in JavaScript. The GET
API uses the library to generate options for the "create()" function,
and the POST API decodes and verifies the resulting credential. While
the options and response are dict-like, CBOR is necessary to encode
some of the byte-level values, which can't be represented in JSON.
Much of the code here is based on the Yubico library example [1][2].
Implementation notes:
- There are definitely better ways to alert the user about failure, but
window.alert() will do for the time being. Using location.reload() is
also a bit jarring if the page scrolls, but not a major issue.
- Ideally we would use window.fetch() to do AJAX calls, but we don't
have a polyfill for this, and we use $.ajax() elsewhere [3]. We need
to do a few weird tricks [6] to stop jQuery trashing the data.
- The FIDO2 server doesn't serve web requests; it's just a "server" in
the sense of WebAuthn terminology. It lives in its own module, since it
needs to be initialised with the app / config.
- $.ajax returns a promise-like object. Although we've used ".fail()"
elsewhere [3], I couldn't find a stub object that supports it, so I've
gone for ".catch()", and used a Promise stub object in tests.
- WebAuthn only works over HTTPS, but there's an exception for "localhost"
[4]. However, the library is a bit too strict [5], so we have to disable
origin verification to avoid needing HTTPS for dev work.
[1]: https://github.com/Yubico/python-fido2/blob/c42d9628a4f33d20c4401096fa8d3fc466d5b77f/examples/server/server.py
[2]: https://github.com/Yubico/python-fido2/blob/c42d9628a4f33d20c4401096fa8d3fc466d5b77f/examples/server/static/register.html
[3]: https://github.com/alphagov/notifications-admin/blob/91453d36395b7a0cf2998dfb8a5f52cc9e96640f/app/assets/javascripts/updateContent.js#L33
[4]: https://stackoverflow.com/questions/55971593/navigator-credentials-is-null-on-local-server
[5]: https://github.com/Yubico/python-fido2/blob/c42d9628a4f33d20c4401096fa8d3fc466d5b77f/fido2/rpid.py#L69
[6]: https://stackoverflow.com/questions/12394622/does-jquery-ajax-or-load-allow-for-responsetype-arraybuffer
2021-05-07 18:10:07 +01:00
|
|
|
cffi==1.14.5
|
|
|
|
|
# via cryptography
|
2021-02-02 17:13:18 +00:00
|
|
|
chardet==4.0.0
|
|
|
|
|
# via requests
|
2021-05-31 14:54:14 +01:00
|
|
|
click==8.0.1
|
2021-02-02 17:13:18 +00:00
|
|
|
# via flask
|
2021-06-02 15:11:00 +01:00
|
|
|
colorama==0.4.3
|
2021-02-02 17:13:18 +00:00
|
|
|
# via awscli
|
2021-06-02 15:24:38 +01:00
|
|
|
cryptography==3.3.2
|
Support registering a new authenticator
This adds Yubico's FIDO2 library and two APIs for working with the
"navigator.credentials.create()" function in JavaScript. The GET
API uses the library to generate options for the "create()" function,
and the POST API decodes and verifies the resulting credential. While
the options and response are dict-like, CBOR is necessary to encode
some of the byte-level values, which can't be represented in JSON.
Much of the code here is based on the Yubico library example [1][2].
Implementation notes:
- There are definitely better ways to alert the user about failure, but
window.alert() will do for the time being. Using location.reload() is
also a bit jarring if the page scrolls, but not a major issue.
- Ideally we would use window.fetch() to do AJAX calls, but we don't
have a polyfill for this, and we use $.ajax() elsewhere [3]. We need
to do a few weird tricks [6] to stop jQuery trashing the data.
- The FIDO2 server doesn't serve web requests; it's just a "server" in
the sense of WebAuthn terminology. It lives in its own module, since it
needs to be initialised with the app / config.
- $.ajax returns a promise-like object. Although we've used ".fail()"
elsewhere [3], I couldn't find a stub object that supports it, so I've
gone for ".catch()", and used a Promise stub object in tests.
- WebAuthn only works over HTTPS, but there's an exception for "localhost"
[4]. However, the library is a bit too strict [5], so we have to disable
origin verification to avoid needing HTTPS for dev work.
[1]: https://github.com/Yubico/python-fido2/blob/c42d9628a4f33d20c4401096fa8d3fc466d5b77f/examples/server/server.py
[2]: https://github.com/Yubico/python-fido2/blob/c42d9628a4f33d20c4401096fa8d3fc466d5b77f/examples/server/static/register.html
[3]: https://github.com/alphagov/notifications-admin/blob/91453d36395b7a0cf2998dfb8a5f52cc9e96640f/app/assets/javascripts/updateContent.js#L33
[4]: https://stackoverflow.com/questions/55971593/navigator-credentials-is-null-on-local-server
[5]: https://github.com/Yubico/python-fido2/blob/c42d9628a4f33d20c4401096fa8d3fc466d5b77f/fido2/rpid.py#L69
[6]: https://stackoverflow.com/questions/12394622/does-jquery-ajax-or-load-allow-for-responsetype-arraybuffer
2021-05-07 18:10:07 +01:00
|
|
|
# via
|
|
|
|
|
# -r requirements.in
|
|
|
|
|
# fido2
|
2021-10-11 17:41:23 +01:00
|
|
|
dataclasses==0.8
|
|
|
|
|
# via werkzeug
|
2021-06-02 15:11:00 +01:00
|
|
|
dnspython==1.16.0
|
2021-02-02 17:13:18 +00:00
|
|
|
# via eventlet
|
|
|
|
|
docopt==0.6.2
|
|
|
|
|
# via notifications-python-client
|
2021-06-02 15:11:00 +01:00
|
|
|
docutils==0.15.2
|
2021-02-02 17:13:18 +00:00
|
|
|
# via awscli
|
2021-05-31 14:54:17 +01:00
|
|
|
et-xmlfile==1.1.0
|
2021-02-02 17:13:18 +00:00
|
|
|
# via openpyxl
|
2021-07-23 09:01:53 +01:00
|
|
|
eventlet==0.30.2 # pyup: ignore
|
2021-02-02 17:13:18 +00:00
|
|
|
# via -r requirements.in
|
Support registering a new authenticator
This adds Yubico's FIDO2 library and two APIs for working with the
"navigator.credentials.create()" function in JavaScript. The GET
API uses the library to generate options for the "create()" function,
and the POST API decodes and verifies the resulting credential. While
the options and response are dict-like, CBOR is necessary to encode
some of the byte-level values, which can't be represented in JSON.
Much of the code here is based on the Yubico library example [1][2].
Implementation notes:
- There are definitely better ways to alert the user about failure, but
window.alert() will do for the time being. Using location.reload() is
also a bit jarring if the page scrolls, but not a major issue.
- Ideally we would use window.fetch() to do AJAX calls, but we don't
have a polyfill for this, and we use $.ajax() elsewhere [3]. We need
to do a few weird tricks [6] to stop jQuery trashing the data.
- The FIDO2 server doesn't serve web requests; it's just a "server" in
the sense of WebAuthn terminology. It lives in its own module, since it
needs to be initialised with the app / config.
- $.ajax returns a promise-like object. Although we've used ".fail()"
elsewhere [3], I couldn't find a stub object that supports it, so I've
gone for ".catch()", and used a Promise stub object in tests.
- WebAuthn only works over HTTPS, but there's an exception for "localhost"
[4]. However, the library is a bit too strict [5], so we have to disable
origin verification to avoid needing HTTPS for dev work.
[1]: https://github.com/Yubico/python-fido2/blob/c42d9628a4f33d20c4401096fa8d3fc466d5b77f/examples/server/server.py
[2]: https://github.com/Yubico/python-fido2/blob/c42d9628a4f33d20c4401096fa8d3fc466d5b77f/examples/server/static/register.html
[3]: https://github.com/alphagov/notifications-admin/blob/91453d36395b7a0cf2998dfb8a5f52cc9e96640f/app/assets/javascripts/updateContent.js#L33
[4]: https://stackoverflow.com/questions/55971593/navigator-credentials-is-null-on-local-server
[5]: https://github.com/Yubico/python-fido2/blob/c42d9628a4f33d20c4401096fa8d3fc466d5b77f/fido2/rpid.py#L69
[6]: https://stackoverflow.com/questions/12394622/does-jquery-ajax-or-load-allow-for-responsetype-arraybuffer
2021-05-07 18:10:07 +01:00
|
|
|
fido2==0.9.1
|
|
|
|
|
# via -r requirements.in
|
2021-06-02 15:24:38 +01:00
|
|
|
flask==1.1.2
|
2021-02-02 17:13:18 +00:00
|
|
|
# via
|
|
|
|
|
# -r requirements.in
|
|
|
|
|
# flask-login
|
|
|
|
|
# flask-redis
|
|
|
|
|
# flask-wtf
|
|
|
|
|
# gds-metrics
|
|
|
|
|
# notifications-utils
|
2021-06-24 12:27:12 +01:00
|
|
|
flask-login==0.5.0
|
|
|
|
|
# via -r requirements.in
|
|
|
|
|
flask-redis==0.4.0
|
|
|
|
|
# via notifications-utils
|
|
|
|
|
flask-wtf==0.15.1
|
|
|
|
|
# via -r requirements.in
|
2021-02-02 17:13:18 +00:00
|
|
|
gds-metrics==0.2.4
|
|
|
|
|
# via -r requirements.in
|
|
|
|
|
geojson==2.5.0
|
|
|
|
|
# via notifications-utils
|
|
|
|
|
govuk-bank-holidays==0.8
|
|
|
|
|
# via
|
|
|
|
|
# -r requirements.in
|
|
|
|
|
# notifications-utils
|
2021-09-16 12:05:32 +01:00
|
|
|
govuk-frontend-jinja @ git+https://github.com/alphagov/govuk-frontend-jinja.git@v0.5.8-alpha
|
2021-02-02 17:13:18 +00:00
|
|
|
# via -r requirements.in
|
2021-05-31 14:54:17 +01:00
|
|
|
greenlet==1.1.0
|
2021-02-02 17:13:18 +00:00
|
|
|
# via eventlet
|
2021-04-05 14:55:04 +01:00
|
|
|
gunicorn==20.1.0
|
2021-02-02 17:13:18 +00:00
|
|
|
# via -r requirements.in
|
2021-05-31 14:54:06 +01:00
|
|
|
humanize==3.6.0
|
2021-02-02 17:13:18 +00:00
|
|
|
# via -r requirements.in
|
2021-06-02 15:11:00 +01:00
|
|
|
idna==2.10
|
2021-02-02 17:13:18 +00:00
|
|
|
# via requests
|
2021-10-13 15:35:53 +01:00
|
|
|
importlib-metadata==4.2.0
|
|
|
|
|
# via
|
|
|
|
|
# -r requirements.in
|
|
|
|
|
# click
|
2021-06-02 15:24:38 +01:00
|
|
|
itsdangerous==1.1.0
|
2021-02-02 17:13:18 +00:00
|
|
|
# via
|
|
|
|
|
# -r requirements.in
|
|
|
|
|
# flask
|
|
|
|
|
# flask-wtf
|
|
|
|
|
# notifications-utils
|
2021-06-02 15:24:38 +01:00
|
|
|
jinja2==2.11.3
|
2021-02-02 17:13:18 +00:00
|
|
|
# via
|
|
|
|
|
# flask
|
|
|
|
|
# govuk-frontend-jinja
|
|
|
|
|
# notifications-utils
|
|
|
|
|
jmespath==0.10.0
|
|
|
|
|
# via
|
|
|
|
|
# boto3
|
|
|
|
|
# botocore
|
|
|
|
|
lml==0.1.0
|
|
|
|
|
# via
|
|
|
|
|
# pyexcel
|
|
|
|
|
# pyexcel-io
|
2021-03-22 10:43:01 +00:00
|
|
|
lxml==4.6.3
|
2021-02-02 17:13:18 +00:00
|
|
|
# via
|
|
|
|
|
# pyexcel-ezodf
|
|
|
|
|
# pyexcel-ods3
|
2021-05-31 14:54:18 +01:00
|
|
|
markupsafe==2.0.1
|
2021-02-02 17:13:18 +00:00
|
|
|
# via
|
|
|
|
|
# jinja2
|
|
|
|
|
# wtforms
|
|
|
|
|
mistune==0.8.4
|
|
|
|
|
# via notifications-utils
|
2021-10-11 12:26:56 +01:00
|
|
|
notifications-python-client==6.3.0
|
2021-02-02 17:13:18 +00:00
|
|
|
# via -r requirements.in
|
2021-09-16 12:05:32 +01:00
|
|
|
notifications-utils @ git+https://github.com/alphagov/notifications-utils.git@46.1.0
|
2021-02-02 17:13:18 +00:00
|
|
|
# via -r requirements.in
|
2021-03-15 13:55:08 +00:00
|
|
|
openpyxl==3.0.7
|
2021-02-02 17:13:18 +00:00
|
|
|
# via pyexcel-xlsx
|
|
|
|
|
orderedset==2.0.3
|
|
|
|
|
# via notifications-utils
|
2021-02-16 16:16:17 +00:00
|
|
|
packaging==20.9
|
2021-02-02 17:13:18 +00:00
|
|
|
# via bleach
|
2021-05-31 14:54:19 +01:00
|
|
|
phonenumbers==8.12.24
|
2021-02-02 17:13:18 +00:00
|
|
|
# via notifications-utils
|
2021-04-12 14:55:07 +01:00
|
|
|
prometheus-client==0.10.1
|
2021-02-02 17:13:18 +00:00
|
|
|
# via
|
|
|
|
|
# -r requirements.in
|
|
|
|
|
# gds-metrics
|
|
|
|
|
pyasn1==0.4.8
|
|
|
|
|
# via rsa
|
Support registering a new authenticator
This adds Yubico's FIDO2 library and two APIs for working with the
"navigator.credentials.create()" function in JavaScript. The GET
API uses the library to generate options for the "create()" function,
and the POST API decodes and verifies the resulting credential. While
the options and response are dict-like, CBOR is necessary to encode
some of the byte-level values, which can't be represented in JSON.
Much of the code here is based on the Yubico library example [1][2].
Implementation notes:
- There are definitely better ways to alert the user about failure, but
window.alert() will do for the time being. Using location.reload() is
also a bit jarring if the page scrolls, but not a major issue.
- Ideally we would use window.fetch() to do AJAX calls, but we don't
have a polyfill for this, and we use $.ajax() elsewhere [3]. We need
to do a few weird tricks [6] to stop jQuery trashing the data.
- The FIDO2 server doesn't serve web requests; it's just a "server" in
the sense of WebAuthn terminology. It lives in its own module, since it
needs to be initialised with the app / config.
- $.ajax returns a promise-like object. Although we've used ".fail()"
elsewhere [3], I couldn't find a stub object that supports it, so I've
gone for ".catch()", and used a Promise stub object in tests.
- WebAuthn only works over HTTPS, but there's an exception for "localhost"
[4]. However, the library is a bit too strict [5], so we have to disable
origin verification to avoid needing HTTPS for dev work.
[1]: https://github.com/Yubico/python-fido2/blob/c42d9628a4f33d20c4401096fa8d3fc466d5b77f/examples/server/server.py
[2]: https://github.com/Yubico/python-fido2/blob/c42d9628a4f33d20c4401096fa8d3fc466d5b77f/examples/server/static/register.html
[3]: https://github.com/alphagov/notifications-admin/blob/91453d36395b7a0cf2998dfb8a5f52cc9e96640f/app/assets/javascripts/updateContent.js#L33
[4]: https://stackoverflow.com/questions/55971593/navigator-credentials-is-null-on-local-server
[5]: https://github.com/Yubico/python-fido2/blob/c42d9628a4f33d20c4401096fa8d3fc466d5b77f/fido2/rpid.py#L69
[6]: https://stackoverflow.com/questions/12394622/does-jquery-ajax-or-load-allow-for-responsetype-arraybuffer
2021-05-07 18:10:07 +01:00
|
|
|
pycparser==2.20
|
|
|
|
|
# via cffi
|
2021-06-24 12:27:12 +01:00
|
|
|
pyexcel==0.6.6
|
|
|
|
|
# via -r requirements.in
|
2021-02-02 17:13:18 +00:00
|
|
|
pyexcel-ezodf==0.3.4
|
|
|
|
|
# via pyexcel-ods3
|
|
|
|
|
pyexcel-io==0.6.4
|
|
|
|
|
# via
|
|
|
|
|
# -r requirements.in
|
|
|
|
|
# pyexcel
|
|
|
|
|
# pyexcel-ods3
|
|
|
|
|
# pyexcel-xls
|
|
|
|
|
# pyexcel-xlsx
|
|
|
|
|
pyexcel-ods3==0.6.0
|
|
|
|
|
# via -r requirements.in
|
|
|
|
|
pyexcel-xls==0.6.2
|
|
|
|
|
# via -r requirements.in
|
|
|
|
|
pyexcel-xlsx==0.6.0
|
|
|
|
|
# via -r requirements.in
|
2021-05-31 14:54:19 +01:00
|
|
|
pyjwt==2.1.0
|
2021-02-02 17:13:18 +00:00
|
|
|
# via notifications-python-client
|
|
|
|
|
pyparsing==2.4.7
|
|
|
|
|
# via packaging
|
|
|
|
|
pypdf2==1.26.0
|
|
|
|
|
# via notifications-utils
|
|
|
|
|
python-dateutil==2.8.1
|
|
|
|
|
# via
|
|
|
|
|
# awscli-cwlogs
|
|
|
|
|
# botocore
|
|
|
|
|
python-json-logger==2.0.1
|
|
|
|
|
# via notifications-utils
|
2021-02-16 16:16:17 +00:00
|
|
|
pytz==2021.1
|
2021-02-02 17:13:18 +00:00
|
|
|
# via
|
|
|
|
|
# -r requirements.in
|
|
|
|
|
# notifications-utils
|
2021-02-23 11:51:09 +00:00
|
|
|
pyyaml==5.4.1
|
2021-02-02 17:13:18 +00:00
|
|
|
# via
|
|
|
|
|
# awscli
|
|
|
|
|
# notifications-utils
|
|
|
|
|
redis==3.5.3
|
|
|
|
|
# via flask-redis
|
|
|
|
|
requests==2.25.1
|
|
|
|
|
# via
|
|
|
|
|
# awscli-cwlogs
|
|
|
|
|
# govuk-bank-holidays
|
|
|
|
|
# notifications-python-client
|
|
|
|
|
# notifications-utils
|
2021-03-08 13:55:12 +00:00
|
|
|
rsa==4.7.2
|
2021-02-02 17:13:18 +00:00
|
|
|
# via awscli
|
2021-04-13 12:43:28 +01:00
|
|
|
rtreelib==0.2.0
|
2021-03-18 23:02:32 +00:00
|
|
|
# via -r requirements.in
|
2021-05-31 14:54:20 +01:00
|
|
|
s3transfer==0.4.2
|
2021-02-02 17:13:18 +00:00
|
|
|
# via
|
|
|
|
|
# awscli
|
|
|
|
|
# boto3
|
|
|
|
|
shapely==1.7.1
|
2021-02-09 14:07:01 +00:00
|
|
|
# via
|
|
|
|
|
# -r requirements.in
|
|
|
|
|
# notifications-utils
|
2021-05-31 14:54:20 +01:00
|
|
|
six==1.16.0
|
2021-02-02 17:13:18 +00:00
|
|
|
# via
|
|
|
|
|
# awscli-cwlogs
|
|
|
|
|
# bleach
|
2021-06-02 15:24:38 +01:00
|
|
|
# cryptography
|
2021-02-02 17:13:18 +00:00
|
|
|
# eventlet
|
Support registering a new authenticator
This adds Yubico's FIDO2 library and two APIs for working with the
"navigator.credentials.create()" function in JavaScript. The GET
API uses the library to generate options for the "create()" function,
and the POST API decodes and verifies the resulting credential. While
the options and response are dict-like, CBOR is necessary to encode
some of the byte-level values, which can't be represented in JSON.
Much of the code here is based on the Yubico library example [1][2].
Implementation notes:
- There are definitely better ways to alert the user about failure, but
window.alert() will do for the time being. Using location.reload() is
also a bit jarring if the page scrolls, but not a major issue.
- Ideally we would use window.fetch() to do AJAX calls, but we don't
have a polyfill for this, and we use $.ajax() elsewhere [3]. We need
to do a few weird tricks [6] to stop jQuery trashing the data.
- The FIDO2 server doesn't serve web requests; it's just a "server" in
the sense of WebAuthn terminology. It lives in its own module, since it
needs to be initialised with the app / config.
- $.ajax returns a promise-like object. Although we've used ".fail()"
elsewhere [3], I couldn't find a stub object that supports it, so I've
gone for ".catch()", and used a Promise stub object in tests.
- WebAuthn only works over HTTPS, but there's an exception for "localhost"
[4]. However, the library is a bit too strict [5], so we have to disable
origin verification to avoid needing HTTPS for dev work.
[1]: https://github.com/Yubico/python-fido2/blob/c42d9628a4f33d20c4401096fa8d3fc466d5b77f/examples/server/server.py
[2]: https://github.com/Yubico/python-fido2/blob/c42d9628a4f33d20c4401096fa8d3fc466d5b77f/examples/server/static/register.html
[3]: https://github.com/alphagov/notifications-admin/blob/91453d36395b7a0cf2998dfb8a5f52cc9e96640f/app/assets/javascripts/updateContent.js#L33
[4]: https://stackoverflow.com/questions/55971593/navigator-credentials-is-null-on-local-server
[5]: https://github.com/Yubico/python-fido2/blob/c42d9628a4f33d20c4401096fa8d3fc466d5b77f/fido2/rpid.py#L69
[6]: https://stackoverflow.com/questions/12394622/does-jquery-ajax-or-load-allow-for-responsetype-arraybuffer
2021-05-07 18:10:07 +01:00
|
|
|
# fido2
|
2021-02-02 17:13:18 +00:00
|
|
|
# govuk-bank-holidays
|
|
|
|
|
# python-dateutil
|
|
|
|
|
smartypants==2.0.1
|
|
|
|
|
# via notifications-utils
|
|
|
|
|
statsd==3.3.0
|
|
|
|
|
# via notifications-utils
|
|
|
|
|
texttable==1.6.3
|
|
|
|
|
# via pyexcel
|
2021-07-19 10:19:43 +01:00
|
|
|
typing-extensions==3.10.0.0
|
|
|
|
|
# via importlib-metadata
|
2021-05-31 14:54:21 +01:00
|
|
|
urllib3==1.26.5
|
2021-02-02 17:13:18 +00:00
|
|
|
# via
|
|
|
|
|
# botocore
|
|
|
|
|
# requests
|
|
|
|
|
webencodings==0.5.1
|
|
|
|
|
# via bleach
|
2021-10-11 17:41:23 +01:00
|
|
|
werkzeug==2.0.2
|
|
|
|
|
# via
|
|
|
|
|
# -r requirements.in
|
|
|
|
|
# flask
|
2021-02-02 17:13:18 +00:00
|
|
|
wtforms==2.3.3
|
|
|
|
|
# via flask-wtf
|
2021-06-02 15:11:00 +01:00
|
|
|
xlrd==1.2.0
|
2021-02-02 17:13:18 +00:00
|
|
|
# via pyexcel-xls
|
|
|
|
|
xlwt==1.3.0
|
|
|
|
|
# via pyexcel-xls
|
2021-07-19 10:19:43 +01:00
|
|
|
zipp==3.5.0
|
|
|
|
|
# via importlib-metadata
|
2018-07-10 15:16:14 +01:00
|
|
|
|
2020-12-29 13:10:08 +00:00
|
|
|
# The following packages are considered to be unsafe in a requirements file:
|
|
|
|
|
# setuptools
|