-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathpyproject.toml
88 lines (79 loc) · 1.93 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[tool.poetry]
authors = ["Sylvain Lesage <[email protected]>"]
description = "API to extract rows of 🤗 datasets"
name = "datasets-preview-backend"
version = "0.1.0"
[tool.poetry.dependencies]
Pillow = "^8.4.0"
PyICU = "^2.7.4"
aiohttp = "^3.7.4.post0"
apache-beam = "^2.33.0"
appdirs = "^1.4.4"
bs4 = "^0.0.1"
conllu = "^4.4.1"
datasets = { git = "https://github.com/huggingface/datasets.git", rev = "4b9334007e069ad71630ba36283d3abafba42174", extras = [
"audio",
"vision",
] }
diskcache = "^5.2.1"
function-parser = "^0.0.3"
gdown = "^4.2.0"
kenlm = { url = "https://github.com/kpu/kenlm/archive/master.zip" }
kss = "^2.6.0"
lm-dataformat = "^0.0.19"
lxml = "^4.6.3"
mongo-types = "0.15.1"
mongoengine = "^0.23.1"
nlp = "^0.4.0"
nltk = "^3.6.5"
openpyxl = "^3.0.9"
orjson = "^3.6.4"
psutil = "^5.8.0"
py7zr = "^0.17.4"
pydub = "^0.25.1"
python = "3.9.6"
python-dotenv = "^0.19.1"
rarfile = "^4.0"
requests = "^2.27.1"
sklearn = "^0.0"
starlette = "^0.16.0"
tensorflow = "2.8.0"
tfrecord = "^1.14.1"
torchaudio = "^0.10.1"
transformers = "^4.11.3"
trec-car-tools = { path = "vendors/trec-car-tools/python3" }
typer = "^0.4.0"
types-psutil = "^5.8.13"
types-requests = "^2.25.11"
uvicorn = "^0.14.0"
watchdog = { extras = ["watchmedo"], version = "^2.1.3" }
wget = "^3.2"
[tool.poetry.dev-dependencies]
bandit = "^1.7.0"
black = "^22.1.0"
flake8 = "^3.9.2"
isort = "^5.9.3"
mypy = "0.812"
poetryup = "^0.3.8"
pytest = "^6.2.5"
pytest-cov = "^2.12.1"
safety = "^1.10.3"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool.pytest.ini_options]
filterwarnings = ["ignore::DeprecationWarning"]
[tool.coverage.run]
source = ["datasets_preview_backend"]
[tool.isort]
profile = "black"
[tool.black]
line-length = 119
preview = true
[tool.mypy]
exclude = 'vendors'
strict = true
[[tool.mypy.overrides]]
# could be solved in datasets by adding __add__ to the __init__.py file
implicit_reexport = true
module = "datasets"