Created
August 21, 2019 20:27
-
-
Save jasonnerothin/aaacd3c8aec30bfca991fd04e2847ec9 to your computer and use it in GitHub Desktop.
Airflow with poetry
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[tool.poetry] | |
name = "legion-airflow" | |
version = "0.1.0" | |
description = "Airflow Operators for Legion" | |
license = "Apache2" | |
authors = [ | |
"[email protected] <[email protected]>" | |
] | |
readme = 'README.md' | |
repository = "https://github.com/legion-platform/legion-airflow" | |
homepage = "https://github.com/legion-platform/legion-airflow" | |
keywords = ['legion', 'airflow', 'operators'] | |
[tool.poetry.dependencies] | |
python = "^3.6" | |
toml = "^0.9" | |
# Dependencies with extras | |
apache-airflow = { version = "1.10.3" } # , extras = [ "gcp" ] } | |
# Git dependencies | |
#cleo = { git = "https://github.com/sdispater/cleo.git", branch = "master" } | |
[tool.poetry.dev-dependencies] | |
pytest = "^3.0" | |
pytest-cov = "^2.4" | |
[tool.poetry.scripts] | |
my-script = 'dags:tutorial_dag.py' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment