2020-10-05 21:30:35 +02:00
|
|
|
[tool.poetry]
|
|
|
|
name = "dspace-statistics-api"
|
2022-03-26 17:10:47 +01:00
|
|
|
version = "1.4.4-dev"
|
2020-12-23 15:15:46 +01:00
|
|
|
description = "A simple REST API to expose Solr view and download statistics for items, communities, and collections in a DSpace repository."
|
2020-10-06 17:46:31 +02:00
|
|
|
authors = ["Alan Orth <aorth@mjanja.ch>"]
|
2020-10-05 21:30:35 +02:00
|
|
|
license = "GPL-3.0-only"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2023-05-30 09:23:10 +02:00
|
|
|
python = "^3.8"
|
2020-10-05 21:30:35 +02:00
|
|
|
gunicorn = "^20.0.4"
|
2022-11-21 08:45:32 +01:00
|
|
|
falcon = "3.1.1"
|
2021-07-06 15:24:57 +02:00
|
|
|
psycopg2 = "^2.9.1"
|
2020-10-05 21:30:35 +02:00
|
|
|
requests = "^2.24.0"
|
2021-11-09 21:09:11 +01:00
|
|
|
falcon-swagger-ui = {git = "https://github.com/alanorth/falcon-swagger-ui.git", rev="falcon3-update-swagger-ui"}
|
2020-10-05 21:30:35 +02:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2022-01-30 11:49:36 +01:00
|
|
|
flake8 = "^4.0.1"
|
2023-05-30 10:08:39 +02:00
|
|
|
pytest = "^7.0.0"
|
2023-05-30 09:09:32 +02:00
|
|
|
black = "^22.1.0"
|
|
|
|
isort = "^5.9.1"
|
2020-10-05 21:30:35 +02:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry>=0.12"]
|
|
|
|
build-backend = "poetry.masonry.api"
|
2022-12-20 14:13:44 +01:00
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
profile = "black"
|
|
|
|
line_length=88
|