-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
60 lines (53 loc) · 1.32 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
[tool.poetry]
name = "research_etl"
version = "0.1.0"
description = "OPMI Research Server ETL Jobs"
authors = ["Ryan Rymarczyk <[email protected]>"]
license = "MIT"
[tool.poetry.scripts]
run_etl_jobs = 'research_etl.pipeline:run_jobs'
[tool.poetry.dependencies]
python = "^3.11"
polars = "^1.2.0"
SQLAlchemy = "^2.0.23"
psycopg2 = "^2.9.9"
boto3 = "^1.29.4"
pandas = "^2.2.2"
pyarrow = "^17.0.0"
paramiko = "^3.4.0"
box-sdk-gen = {extras = ["jwt"], version = "^1.5.1"}
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.26.0"
black = "^23.11.0"
pylint = "^3.0.2"
mypy = "^1.7.0"
types-paramiko = "^3.3.0.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target-version = ['py311']
[tool.mypy]
disallow_untyped_defs = true
ignore_missing_imports = true
pretty = true
python_version = 3.11
warn_unreachable = true
warn_unused_ignores = true
[tool.pylint]
disable = [
# disable doc string requirements
"missing-module-docstring",
# allow catching a generic exception
"broad-except",
# we're logging everything so its "ok"
"lost-exception",
# caught by black
"line-too-long",
]
good-names = ["e", "i", "s"]
max-line-length = 120
min-similarity-lines = 10
# https://github.com/PyCQA/pylint/issues/7090
ignored-classes = ['sqlalchemy.orm.session.sessionmaker']