-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
51 lines (41 loc) · 1.12 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
44
45
46
47
48
49
50
51
[tool.poetry]
name = "airflow_ecr_plugin"
version = "0.1.3"
description = "Airflow ECR plugin"
authors = ["Sandeep Aggarwal <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/asandeep/airflow-ecr-plugin"
repository = "https://github.com/asandeep/airflow-ecr-plugin.git"
keywords = ["airflow", "ecr", "docker"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Plugins",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^2.7.5 || ^3.5"
apache-airflow = {version = "^1.10.9", optional = true}
boto3 = "^1.10"
[tool.poetry.dev-dependencies]
pytest = "^4.6"
moto = "^1.3.14"
tox = "^3.14.5"
pytest-cov = "^2.8.1"
[tool.poetry.extras]
airflow = ["apache-airflow"]
[tool.tox]
legacy_tox_ini = """
[tox]
isolated_build = true
envlist = py27, py36
[testenv]
whitelist_externals = poetry
commands =
poetry install -E airflow
poetry run pytest --cov-report=xml --cov=airflow_ecr_plugin
"""
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"