-
Notifications
You must be signed in to change notification settings - Fork 184
/
Copy pathpyproject.toml
67 lines (61 loc) · 1.23 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
[tool.poetry]
name = "nlm-ingestor"
version = "0.1.0"
description = ""
authors = ["Jonathan <jonathan.hilgart@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
flask = "^3.0.3"
flask-restful = "^0.3.10"
flask-jsonpify = "^1.5.0"
gunicorn = "^23.0.0"
werkzeug = "^3.0.4"
tika = "^2.6.0"
bs4 = "^0.0.2"
nltk = "3.9.1"
python-magic = "0.4.22"
numpy = "1.24.4"
tqdm = "^4.66.5"
symspellpy = ">=6.7.0"
pandas = ">=1.2.4"
mistune = "2.0.3"
lxml = "4.9.1"
unidecode = "^1.3.8"
nlm-utils = {path = "whl/nlm_utils-0.1.4-py3-none-any.whl"}
logfire = {extras = ["system-metrics"], version = "^3.6.4"}
urllib3 = "1.26.17"
aiohttp = "3.9.4"
[tool.poetry.group.dev.dependencies]
black = "^24.8.0"
isort = "^5.13.2"
pytest = "^8.3.3"
pdfplumber = "^0.11.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# Add these new sections
[tool.black]
target-version = ['py310']
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''
[tool.isort]
profile = "black"
line_length = 88
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true