1
0
mirror of https://github.com/ilri/dspace-statistics-api.git synced 2024-07-03 11:33:46 +02:00
dspace-statistics-api/pyproject.toml
Alan Orth 2fada6c6ff
All checks were successful
continuous-integration/drone/push Build is passing
pyproject.toml: Use psycopg2 instead of psycopg2-binary
According to the documentation the binary version is not meant to
be run in production. Since I'm in control of both my development
and production servers and can ensure that libpq-dev is installed
on both, I will use the source version of this module.

See: https://www.psycopg.org/docs/install.html#quick-install
2021-06-22 17:49:49 +03:00

26 lines
734 B
TOML

[tool.poetry]
name = "dspace-statistics-api"
version = "1.4.3-dev"
description = "A simple REST API to expose Solr view and download statistics for items, communities, and collections in a DSpace repository."
authors = ["Alan Orth <aorth@mjanja.ch>"]
license = "GPL-3.0-only"
[tool.poetry.dependencies]
python = "^3.6"
gunicorn = "^20.0.4"
falcon = "3.0.0"
psycopg2 = "^2.8.6"
requests = "^2.24.0"
falcon-swagger-ui = {git = "https://github.com/alanorth/falcon-swagger-ui.git", rev="falcon-300b1"}
[tool.poetry.dev-dependencies]
ipython = { version = "^7.18.1", python = "^3.7" }
flake8 = "^3.8.4"
pytest = "^6.1.1"
isort = "^5.5.4"
black = "^20.8b1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"