-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
65 lines (62 loc) · 1.9 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "chord_metadata_service" # can be renamed to katsu if inner module directory is renamed too
version = "9.0.0"
description = "An implementation of a clin/pheno metadata store for the Bento platform."
authors = [
"Ksenia Zaytseva",
"David Lougheed <[email protected]>",
"Simon Chénard <[email protected]>",
"Romaine Grégoire",
"Paul Pillot <[email protected]>",
"Son Chau",
]
readme = "README.md"
packages = [{include = "chord_metadata_service"}]
include = [
"chord_metadata_service/chord/workflows/wdls/*.wdl",
"chord_metadata_service/chord/tests/*.json",
"chord_metadata_service/dats/*",
"chord_metadata_service/restapi/tests/*.json",
]
repository = "https://github.com/bento-platform/katsu"
license = "LGPL-3.0-only"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent"
]
[tool.poetry.dependencies]
python = "^3.10.0"
bento-lib = {extras = ["django"], version = "^11.12.0"}
Django = "^5.0.7"
django-autocomplete-light = "^3.11.0"
django-cors-headers = "^4.3.1"
django-filter = "^24.2"
djangorestframework = "~3.15.2"
djangorestframework-camel-case = "^1.3.0"
drf-spectacular = "^0.27.1"
elasticsearch = "~7.8.0"
fhirclient = "~3.2"
jsonschema = {version = "~4.22.0", extras = ["format"]}
psycopg2-binary = "~2.9.5"
PyJWT = {extras = ["crypto"], version = "^2.6.0"}
python-dateutil = "^2.8.2"
python-dotenv = "^1.0.1"
rdflib = "^6.2.0"
requests = "^2.32.2"
rfc3987 = "^1.3.8"
tabulate = "^0.9.0"
uritemplate = "^4.1.1"
pyhumps = "^3.8.0"
adrf = "^0.1.7"
referencing = "^0.32.1"
[tool.poetry.group.dev.dependencies]
coverage = "^7.4.0"
flake8 = "^7.0.0"
tox = "^4.12.1"
debugpy = "^1.6.7"
daphne = "^4.1.0"
aioresponses = "^0.7.6"