1
0
mirror of https://github.com/ilri/dspace-statistics-api.git synced 2024-10-23 01:03:02 +02:00
dspace-statistics-api/pyproject.toml

29 lines
753 B
TOML
Raw Normal View History

[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>"]
license = "GPL-3.0-only"
[tool.poetry.dependencies]
2023-05-30 15:03:35 +02:00
python = "^3.8.1"
gunicorn = "^23.0.0"
falcon = "^3.1.3"
psycopg2 = "^2.9.9"
requests = "^2.32.3"
falcon-swagger-ui = {git = "https://github.com/alanorth/falcon-swagger-ui.git", rev="falcon3-update-swagger-ui"}
[tool.poetry.group.dev.dependencies]
black = "^24.0.0"
flake8 = "^7.1.1"
isort = "^5.13.2"
pytest = "^8.3.3"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.isort]
profile = "black"
line_length=88