-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
62 lines (50 loc) · 1.51 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
[tool.poetry]
name = "cv-py"
version = "0.0.0"
description = "Collection of tools and techniques to kick-start analysis of the COVID-19 Research Challenge Dataset "
authors = ["Rachael Sexton <rtbs@nist.gov>"]
include = ["cv_py/resources/*.yml"]
[tool.poetry.dependencies]
python = "^3.8"
tqdm = "^4.43.0"
dacite = "^1.5.0"
# versioning datapackages
requests = "^2.23.0"
semantic_version = "^2.8.5"
# basic analytics
pandas = "^1.0.3"
pyarrow = "^3.0.0"
scikit-learn = "^0.24.1"
dask = {extras = ["complete"], version = "^2.13.0"}
# A list of optional dependencies, choosable by module
## Spacy ecosystem
textacy = { version = "^0.10.0", optional = true}
scispacy = { version = "^0.2.4", optional = true}
## flair ecosystem
flair = { version = "^0.4.5", optional = true}
## Viz tools
holoviews = {extras = ["recommended"], version = "^1.13.2", optional = true}
seaborn = {version = "^0.10.0", optional = true}
panel = {version = "^0.9.5", optional = true}
[tool.poetry.extras]
spacy = ["textacy", "scispacy"]
flair = ["flair"]
viz = ["holoviews", "panel", "seaborn"]
[tool.poetry.scripts]
cv-download = 'cv_py.resources.datapackage:download_cli'
[tool.poetry.dev-dependencies]
pytest = ">=4.6"
black = "^19.10b0"
taskipy = "^1.2.1"
poetry-dynamic-versioning = "^0.10.0"
[tool.taskipy.tasks]
format = "black cv_py/"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
format = "{base}"
[tool.poetry-dynamic-versioning.substitution]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"