Skip to content

Instantly share code, notes, and snippets.

@jasonnerothin
Created August 21, 2019 20:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasonnerothin/aaacd3c8aec30bfca991fd04e2847ec9 to your computer and use it in GitHub Desktop.
Save jasonnerothin/aaacd3c8aec30bfca991fd04e2847ec9 to your computer and use it in GitHub Desktop.
Airflow with poetry
[tool.poetry]
name = "legion-airflow"
version = "0.1.0"
description = "Airflow Operators for Legion"
license = "Apache2"
authors = [
"Jason_Nerothin@epam.com <Jason_Nerothin@epam.com>"
]
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