-
Notifications
You must be signed in to change notification settings - Fork 19
/
pyproject.toml
43 lines (35 loc) · 1.2 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
[tool.poetry]
name = "datajob"
version = "0.11.0"
description = "Build and deploy a serverless data pipeline with no effort on AWS."
authors = ["Vincent Claes <[email protected]>"]
license = "Apache Software License (Apache 2.0)"
readme = 'README.md' # Markdown files are supported
repository = "https://github.com/vincentclaes/datajob"
homepage = "https://github.com/vincentclaes/datajob"
keywords = ["pipelines", "machine learning", "data pipelines", "data science", "data engineering"]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
stepfunctions = "^2.1.0"
contextvars = "^2.4"
typer = "^0.3.2"
"aws-cdk.core" = "^1.181"
"aws-cdk.aws-glue" = "^1.181"
"aws-cdk.aws-s3-deployment" = "^1.181"
"aws-cdk.aws-stepfunctions" = "^1.181"
"aws-cdk.aws-sns-subscriptions" = "^1.181"
rich = "^9.13.0"
toposort = "^1.6"
[tool.poetry.dev-dependencies]
moto = "^1.3.16"
pre-commit = "^2.9.3"
pytest = "^6.2.1"
sagemaker = {extras = ["local"], version = "^2.1"}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
datajob = 'datajob.datajob:run'
[tool.dephell.main]
from = {format = "poetry", path = "pyproject.toml"}
to = {format = "setuppy", path = "setup.py"}