forked from jstray/deepform
-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
49 lines (44 loc) · 1.17 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
[tool.poetry]
name = "deepform"
version = "0.1.1"
description = "extract information from TV station political advertising disclosure forms"
authors = ["Jonathan Stray <jonathanstray@gmail.com>"]
[tool.poetry.dependencies]
boto3 = "^1.14.39"
fuzzywuzzy = {extras = ["speedup"], version = "^0.18.0"}
humanize = "^3.0.0"
joblib = "^0.16.0"
keras = "^2.4.3"
numpy = "^1.18.5"
pandas = "^1.1.2"
pdfplumber = "^0.5.23"
pyarrow = "^1.0.1"
python = "^3.8.1"
sqlalchemy = "^1.3.18"
tensorflow = "^2.3.1"
tqdm = "^4.48.2"
wandb = "0.10.4"
spektral = "^0.6.2"
[tool.poetry.dev-dependencies]
autoflake = "^1.3.1"
babel = "^2.8.0"
black = "^20.8b1"
faker = "^4.1.1"
flake8 = "^3.8.3"
hypothesis = "^5.24.0"
isort = "^5.5.4"
matplotlib = "^3.3.0"
pre-commit = "^2.6.0"
pylint = "^2.5.3"
pytest = "^6.1.0"
jupyterlab = "^2.2.8"
[tool.isort]
profile = "black"
src_paths = ["deepform", "test"]
known_third_party = ["boto3", "botocore", "fuzzywuzzy", "joblib", "keras", "nltk", "numpy", "pandas", "pdfplumber", "pyarrow", "sqlalchemy", "tensorflow", "tqdm", "wandb"]
[tool.black]
line-length = 88
target-version = ['py38']
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"