forked from dehume/corise-dagster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (36 loc) · 818 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
[tool.poetry]
name = "corise-dagster"
version = "0.2.0"
description = "CoRise Dagster."
authors = ["Dennis Hume <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "<3.11,>=3.8.0"
dagster = "1.2.4"
dagit = "1.2.4"
dagstermill = "0.18.4"
dagster-aws = "0.18.4"
dagster-postgres = "0.18.4"
dagster-docker = "0.18.4"
dagster-dbt = "0.18.4"
dbt-postgres = "^1.2.0"
pydantic = "^1.9.0"
redis = "^4.0.0"
boto3 = "^1.24.0"
[tool.poetry.dev-dependencies]
pytest = "^6.1.2"
pytest-cov = "^2.11.1"
mypy = "^0.910"
black = "^22.1.0"
flake8 = "^3.9.0"
flake8-bugbear = "^21.3.2"
isort = "^5.9.3"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[tool.mypy]
ignore_missing_imports = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"