-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (43 loc) · 1.08 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
[tool.poetry]
name = "bohr-runtime"
version = "0.7.0"
description = "BOHR runtime"
authors = ["hlib <[email protected]>"]
license = "MIT"
packages = [
{ include = "bohrruntime" },
]
[tool.poetry.dependencies]
python = "^3.8"
bohr-api = { git = "https://github.com/giganticode/bohr-api", branch = "v0.4.0" }
bohr-labels = { git = "https://github.com/giganticode/bohr-labels", branch = "v0.3.0" }
snorkel = "^0.9"
jsonlines = "^3.0"
GitPython = "^3.1"
numpy = "^1.19"
pandas = "^1.3"
cachetools = "^4.2"
numpyencoder = "^0.3"
nltk = "^3.5"
tabulate = "^0.8"
pymongo = "^4.0"
appdirs = "^1.4"
scikit-learn = "^0.22"
click = "^8.1.3"
fs = "^2.4.16"
frozendict = "^2.3.2"
python-Levenshtein = "^0.12.2"
dvc = {version = "^2.0", extras = ["ssh"]}
configobj = "^5.0.6"
[tool.poetry.dev-dependencies]
black = "^21.12b0"
pre-commit = "^2.16"
bcrypt = "*"
pytest = "6.2"
coverage = "^6.4.4"
[tool.poetry.scripts]
bohr = "bohrruntime.cli.bohr:bohr"
bohr-internal = "bohrruntime.cli.bohr_internal:bohr_internal"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"