forked from ohsu-comp-bio/gen3sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
68 lines (60 loc) · 1.62 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
66
67
68
[tool.poetry]
name = "gen3"
homepage = "https://gen3.org/"
version = "4.18.0"
description = "Gen3 CLI and Python SDK"
authors = ["Center for Translational Data Science at the University of Chicago <support@datacommons.io>"]
license = "Apache-2.0"
packages = [
{ include = "gen3" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering",
]
[tool.poetry.dependencies]
python = "^3.9"
requests = "*"
indexclient = "*"
drsclient = "^0.2.2"
aiohttp = "*"
backoff = "*"
cdislogging = "^1.1.0"
click = "*"
jsonschema = "*"
dataclasses-json = "*"
pypfb = "<1.0.0"
tqdm = "^4.61.2"
humanfriendly ="*"
python-dateutil = "*"
aiofiles = "^0.8.0"
pandas = "^1.4.2"
httpx = "*"
xmltodict = "^0.13.0"
# A list of all of the optional dependencies, some of which are included in the
# below `extras`. They can be opted into by apps.
fhirclient = { version = "*", optional = true }
[tool.poetry.extras]
fhir = ["fhirclient"]
[tool.poetry.dev-dependencies]
pytest = "^6.0.0"
pytest-cov = "*"
requests-mock = "*"
cdisutilstest = { git = "https://github.com/uc-cdis/cdisutils-test.git", tag = "1.0.0" }
indexd = { git = "https://github.com/uc-cdis/indexd.git", tag = "3.5.0" }
[tool.poetry.scripts]
gen3 = "gen3.cli.__main__:main"
[tool.poetry.plugins."gen3.plugins"]
[build-system]
requires = ["poetry>=1.4.1"]
build-backend = "poetry.masonry.api"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-vv"
testpaths = [
"tests",
]