-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
28 lines (24 loc) · 981 Bytes
/
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
[tool.poetry]
name = "dictionaryutils"
version = "3.4.12"
description = "Python wrapper and metaschema for datadictionary."
authors = ["CTDS UChicago <cdis@uchicago.edu>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/uc-cdis/dictionaryutils"
[tool.poetry.dependencies]
python = ">=3.9, <4"
PyYAML = "*"
# limiting to a version where RefResolver is deprecated but still functioning
jsonschema = "<=4.23.0"
cdislogging = "*"
requests = "*"
# set 'develop = true' to prevent over-writing by 'gen3dictionary', similar to
# https://github.com/uc-cdis/gen3datamodel/blob/190f99885c660a2971ec64522168548e19bea512/Pipfile#L16
gdcdictionary = {git = "https://github.com/NCI-GDC/gdcdictionary.git", rev = "2.0.0", develop = true}
[tool.poetry.dev-dependencies]
pytest = "*"
data-simulator = {git = "https://github.com/uc-cdis/data-simulator.git", branch = "update-branches"}
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"