-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (68 loc) · 2.06 KB
/
pyproject.toml
File metadata and controls
72 lines (68 loc) · 2.06 KB
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
66
67
68
69
70
71
72
[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 = "13.1.1"
description = "An implementation of a clin/pheno metadata store for the Bento platform."
authors = [
"Ksenia Zaytseva",
"David Lougheed <david.lougheed@mail.mcgill.ca>",
"Simon Chénard <simon.chenard2@mcgill.ca>",
"Romaine Grégoire",
"Paul Pillot <paul.pillot@computationalgenomics.ca>",
"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.12.0"
bento-lib = {version = "^15.0.0", extras = ["django"]}
Django = "~6.0.4"
django-autocomplete-light = "^3.12.1"
django-cors-headers = "^4.9.0"
django-filter = "~25.2"
djangorestframework = "~3.17.1"
djangorestframework-camel-case = "^1.4.1"
drf-spectacular = "^0.29.0"
jsonschema = {version = "~4.26.0", extras = ["format"]}
psycopg2-binary = "~2.9.11"
PyJWT = {extras = ["crypto"], version = "^2.10.1"}
python-dateutil = "^2.9.0.post0"
python-dotenv = "^1.1.1"
rdflib = "^6.3.2"
requests = "^2.33.0"
rfc3987 = "^1.3.8"
tabulate = "^0.10.0"
uritemplate = "^4.2.0"
pyhumps = "^3.8.0"
adrf = "^0.1.12"
referencing = "^0.37.0"
django-structlog = "^10.0.0"
pycountry = "^26.2.16"
structlog = "^25.4.0"
pydantic = "^2.12.3"
[tool.poetry.group.dev.dependencies]
coverage = "^7.11.0"
flake8 = "^7.3.0"
ruff = "^0.15.0"
tox = "^4.31.0"
debugpy = "^1.8.17"
daphne = "^4.2.1"
aioresponses = "^0.7.8"
[tool.ruff]
line-length = 120
extend-exclude = ["chord_metadata_service/*/migrations"]