-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (73 loc) · 2.22 KB
/
Copy pathpyproject.toml
File metadata and controls
78 lines (73 loc) · 2.22 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
73
74
75
76
77
78
[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 = "15.1.0"
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"
aiohttp = "~3.13.5"
bento-lib = {version = "^17.2.0", extras = ["django"]}
Django = "~6.1.0"
django-autocomplete-light = "^5.0.0"
django-cors-headers = "^4.9.0"
django-filter = "~26.1"
djangorestframework = "~3.18.0"
djangorestframework-camel-case = "^1.4.1"
drf-spectacular = "^0.30.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 = "^26.1.0"
pydantic = "^2.12.3"
openpyxl = "^3.1.5"
[tool.poetry.group.dev.dependencies]
coverage = "^7.15.4"
flake8 = "^7.3.0"
ruff = "^0.16.2"
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"]
[tool.ruff.lint]
# TODO: remove RUF100 when flake8 gets unplugged
ignore = ["PYI041", "RUF012", "RUF022", "RUF100", "T100"]