mirror of
https://github.com/ilri/dspace-statistics-api.git
synced 2024-11-22 06:15:02 +01:00
Compare commits
2 Commits
7de1084f60
...
a02211fd60
Author | SHA1 | Date | |
---|---|---|---|
a02211fd60 | |||
fc814593c7 |
11
poetry.lock
generated
11
poetry.lock
generated
@ -144,6 +144,11 @@ python-versions = "*"
|
|||||||
falcon = "*"
|
falcon = "*"
|
||||||
Jinja2 = "*"
|
Jinja2 = "*"
|
||||||
|
|
||||||
|
[package.source]
|
||||||
|
url = "https://github.com/alanorth/falcon-swagger-ui.git"
|
||||||
|
reference = "a44244c85dceccfcd249b62fea4ee82a8221e3d2"
|
||||||
|
type = "git"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "flake8"
|
name = "flake8"
|
||||||
version = "3.8.4"
|
version = "3.8.4"
|
||||||
@ -589,7 +594,7 @@ testing = ["pytest (>=3.5,<3.7.3 || >3.7.3)", "pytest-checkdocs (>=1.2.3)", "pyt
|
|||||||
[metadata]
|
[metadata]
|
||||||
lock-version = "1.0"
|
lock-version = "1.0"
|
||||||
python-versions = "^3.6"
|
python-versions = "^3.6"
|
||||||
content-hash = "1d56758c9e3aa4586109e8aaf4def576d3506385bc749b97e8518f936f2e91ca"
|
content-hash = "3a8e8a7152971ae091864e7dd5a8fd25f895f68dd1444bffc153c61227e84914"
|
||||||
|
|
||||||
[metadata.files]
|
[metadata.files]
|
||||||
appdirs = [
|
appdirs = [
|
||||||
@ -655,9 +660,7 @@ falcon = [
|
|||||||
{file = "falcon-2.0.0-py2.py3-none-any.whl", hash = "sha256:54f2cb4b687035b2a03206dbfc538055cc48b59a953187b0458aa1b574d47b53"},
|
{file = "falcon-2.0.0-py2.py3-none-any.whl", hash = "sha256:54f2cb4b687035b2a03206dbfc538055cc48b59a953187b0458aa1b574d47b53"},
|
||||||
{file = "falcon-2.0.0.tar.gz", hash = "sha256:eea593cf466b9c126ce667f6d30503624ef24459f118c75594a69353b6c3d5fc"},
|
{file = "falcon-2.0.0.tar.gz", hash = "sha256:eea593cf466b9c126ce667f6d30503624ef24459f118c75594a69353b6c3d5fc"},
|
||||||
]
|
]
|
||||||
falcon-swagger-ui = [
|
falcon-swagger-ui = []
|
||||||
{file = "falcon_swagger_ui-1.2.1-py3-none-any.whl", hash = "sha256:2514e6cb403e87e49a1527764cf090c82885185cc650b7ab5cefa8ebe89af8b8"},
|
|
||||||
]
|
|
||||||
flake8 = [
|
flake8 = [
|
||||||
{file = "flake8-3.8.4-py2.py3-none-any.whl", hash = "sha256:749dbbd6bfd0cf1318af27bf97a14e28e5ff548ef8e5b1566ccfb25a11e7c839"},
|
{file = "flake8-3.8.4-py2.py3-none-any.whl", hash = "sha256:749dbbd6bfd0cf1318af27bf97a14e28e5ff548ef8e5b1566ccfb25a11e7c839"},
|
||||||
{file = "flake8-3.8.4.tar.gz", hash = "sha256:aadae8761ec651813c24be05c6f7b4680857ef6afaae4651a4eccaef97ce6c3b"},
|
{file = "flake8-3.8.4.tar.gz", hash = "sha256:aadae8761ec651813c24be05c6f7b4680857ef6afaae4651a4eccaef97ce6c3b"},
|
||||||
|
@ -11,7 +11,7 @@ gunicorn = "^20.0.4"
|
|||||||
falcon = "^2.0.0"
|
falcon = "^2.0.0"
|
||||||
psycopg2-binary = "^2.8.6"
|
psycopg2-binary = "^2.8.6"
|
||||||
requests = "^2.24.0"
|
requests = "^2.24.0"
|
||||||
falcon-swagger-ui = "^1.2.1"
|
falcon-swagger-ui = {git = "https://github.com/alanorth/falcon-swagger-ui.git"}
|
||||||
|
|
||||||
[tool.poetry.dev-dependencies]
|
[tool.poetry.dev-dependencies]
|
||||||
ipython = { version = "^7.18.1", python = "^3.7" }
|
ipython = { version = "^7.18.1", python = "^3.7" }
|
||||||
|
@ -11,7 +11,7 @@ colorama==0.4.4; python_version >= "3.7" and python_version < "4.0" and sys_plat
|
|||||||
dataclasses==0.6; python_version < "3.7"
|
dataclasses==0.6; python_version < "3.7"
|
||||||
decorator==4.4.2; python_version >= "3.7" and python_version < "4.0"
|
decorator==4.4.2; python_version >= "3.7" and python_version < "4.0"
|
||||||
falcon==2.0.0
|
falcon==2.0.0
|
||||||
falcon-swagger-ui==1.2.1
|
-e git+https://github.com/alanorth/falcon-swagger-ui.git@a44244c85dceccfcd249b62fea4ee82a8221e3d2#egg=falcon-swagger-ui
|
||||||
flake8==3.8.4
|
flake8==3.8.4
|
||||||
gunicorn==20.0.4
|
gunicorn==20.0.4
|
||||||
idna==2.10
|
idna==2.10
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
certifi==2020.12.5
|
certifi==2020.12.5
|
||||||
chardet==4.0.0
|
chardet==4.0.0
|
||||||
falcon==2.0.0
|
falcon==2.0.0
|
||||||
falcon-swagger-ui==1.2.1
|
-e git+https://github.com/alanorth/falcon-swagger-ui.git@a44244c85dceccfcd249b62fea4ee82a8221e3d2#egg=falcon-swagger-ui
|
||||||
gunicorn==20.0.4
|
gunicorn==20.0.4
|
||||||
idna==2.10
|
idna==2.10
|
||||||
jinja2==2.11.2
|
jinja2==2.11.2
|
||||||
|
Loading…
Reference in New Issue
Block a user