-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (46 loc) · 1019 Bytes
/
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
[tool.poetry]
name = "article-rec-training-job"
version = "0.1.0"
description = "Code to define, run, and orchestrate the LNL article recommendation training job."
authors = ["LocalNewsLab <mh3287@columbia.edu>"]
[tool.poetry.dependencies]
# if this python version changes, the python base image in the Dockerfile needs to change too
python = "3.8.*"
aiobotocore = {version = "2.0.1", extras = ["awscli", "boto3"]}
beautifulsoup4 = "4.10.0"
h5py = "3.6.0"
matplotlib = "3.5.0"
pandas = "1.3.4"
peewee = "3.14.8"
psycopg2-binary = "2.9.2"
progressbar2 = "3.55.0"
pytest = "6.2.5"
redshift-connector = "2.0.901"
requests = "2.26.0"
retrying = "1.3.3"
s3fs = "2021.11.1"
scikit-learn = "1.0.1"
scipy = "1.7.3"
[tool.poetry.dev-dependencies]
mypy = "0.961"
pre-commit = "2.19.0"
types-requests = "2.26.0"
[tool.black]
line-length = 122
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| cdk
)/
'''
[tool.isort]
profile = "black"