-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
39 lines (34 loc) · 1.05 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[tool.poetry]
name = "apis-instance-manmax"
version = "0.1.0"
description = "Generic APIS project for auto devops"
authors = ["Richard Hadden <richard.hadden@oeaw.ac.at>"]
license = "MIT"
packages = [{include = "apis_ontology"}]
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
django = ">=4.1,<4.2"
whitenoise = "^5.2.0"
sentry-sdk = "*"
dj-database-url = "^0.5.0"
gunicorn = "^20.0.4"
django-allow-cidr = "^0.3.1"
django-extensions = "^3.1.3"
django-csp = "^3.7"
psycopg2 = "^2.9.6"
pyzotero = "^1.5.5"
numpy = "1.26.4"
apis-core = { git = "https://github.com/acdh-oeaw/apis-core-rdf.git", branch = "manmax" }
webpage = { git = "https://github.com/acdh-oeaw/apis-webpage.git", tag = "v1.0.1" }
apis-bibsonomy = "0.9.1"
apis-override-select2js = { git="https://github.com/acdh-oeaw/apis-override-select2js" }
icecream = "^2.1.3"
citeproc-py = "^0.6.0"
pydantic = "^2.9.2"
[tool.poetry.group.dev.dependencies]
icecream = "^2.1.3"
django-extensions = "^3.2.3"
pydotplus = "^2.0.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"