-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
53 lines (49 loc) · 1.11 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
[tool.poetry]
name = "app"
version = "0.1.0"
description = "Arabic enricher for barmajan hakathon"
authors = ["Zaher Mousa <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.9,<3.9.7 || >3.9.7,<4.0"
streamlit = "^1.22.0"
transformers = "^4.35.0"
langchain = "^0.0.333"
deep_translator = "^1.11.4"
sentencepiece = "^0.1.99"
requests = "^2.26.0"
beautifulsoup4 = "^4.11.1"
bardapi = "^0.1.38"
nltk = "^3.8.1"
qalsadi = "^0.5"
lang-trans = "^0.6.0"
[tool.poetry.dev-dependencies]
pylint = "^2.12.1"
pytest = "^7.1.2"
pre-commit = "^2.19.0"
pytest-timeout = "^2.1.0"
asynctest = "^0.13.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 79
target-version = ['py39']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
| foo.py # also separately exclude a file named foo.py in
# the root of the project
)
'''