-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 861 Bytes
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 861 Bytes
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
[tool.poetry]
name = "viewflow"
version = "0.1.0"
license = "MIT"
description = "Viewflow is an Airflow-based framework that allows data scientists to create data models without writing Airflow code."
authors = ["Vincent Vankrunkelsven <vincent@datacamp.com>", "Ramnath Vaidyanathan <ramnath@datacamp.com>", "Gaëtan Podevijn <gaetan@datacamp.com>"]
readme = "README.md"
[tool.poetry.dependencies]
apache-airflow = "2.1.1"
apache-airflow-providers-postgres = "^2.0.0"
python = "^3.7"
psycopg2 = "^2.8.5"
numpy = "^1.19.1"
pandas = ">=1.1"
boto3 = "^1.14.34"
fsspec = "^0.8.0"
ratelimit = "^2.2.1"
networkx = "^2.5"
sqlalchemy = "<1.4.0"
[tool.poetry.dev-dependencies]
pytest = "^5.4.2"
mypy = "^0.770"
pytest-cov = "^2.8.1"
codecov = "^2.0.22"
black = "^19.10b0"
PyYAML = "5.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"