blob: 7441d66181bd2a0fdfc3ccb11579c3f8654c01ff [file] [log] [blame]
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
[metadata]
name = apache-airflow
summary = Programmatically author, schedule and monitor data pipelines
author = Apache Software Foundation
author_email = dev@airflow.apache.org
url = https://airflow.apache.org/
long_description = file: README.md
long_description_content_type = text/markdown
license = Apache License 2.0
license_files =
LICENSE
NOTICE
# Start of licenses generated automatically
licenses/LICENSE-bootstrap.txt
licenses/LICENSE-bootstrap3-typeahead.txt
licenses/LICENSE-d3-tip.txt
licenses/LICENSE-d3js.txt
licenses/LICENSE-dagre-d3.txt
licenses/LICENSE-datatables.txt
licenses/LICENSE-elasticmock.txt
licenses/LICENSE-eonasdan-bootstrap-datetimepicker.txt
licenses/LICENSE-flask-kerberos.txt
licenses/LICENSE-hue.txt
licenses/LICENSE-jqclock.txt
licenses/LICENSE-jquery.txt
licenses/LICENSE-moment-strftime.txt
licenses/LICENSE-moment.txt
licenses/LICENSE-normalize.txt
licenses/LICENSE-python-nvd3.txt
licenses/LICENSE-python-slugify.txt
# End of licences generated automatically
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Environment :: Web Environment
Intended Audience :: Developers
Intended Audience :: System Administrators
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: System :: Monitoring
project_urls =
Documentation=https://airflow.apache.org/docs/
Bug Tracker=https://github.com/apache/airflow/issues
Source Code=https://github.com/apache/airflow
[options]
zip_safe = False
include_package_data = True
python_requires = ~=3.6
packages = find:
setup_requires =
bowler
docutils
gitpython
setuptools
wheel
#####################################################################################################
# IMPORTANT NOTE!!!!!!!!!!!!!!!
# IF you are removing dependencies from this list, please make sure that you also increase
# DEPENDENCIES_EPOCH_NUMBER in the Dockerfile.ci
#####################################################################################################
install_requires =
alembic>=1.2, <2.0
apache-airflow-providers-ftp
apache-airflow-providers-http
apache-airflow-providers-imap
apache-airflow-providers-sqlite
argcomplete~=1.10
attrs>=20.0, <21.0
cached_property~=1.5
# cattrs >= 1.1.0 dropped support for Python 3.6
cattrs>=1.0, <1.1.0;python_version<="3.6"
cattrs>=1.0, <2.0;python_version>"3.6"
colorlog==4.0.2
connexion[swagger-ui,flask]>=2.6.0,<3
croniter>=0.3.17, <0.4
cryptography>=0.9.3
dill>=0.2.2, <0.4
flask>=1.1.0, <2.0
flask-appbuilder~=3.1.1
flask-caching>=1.5.0, <2.0.0
flask-login>=0.3, <0.5
flask-swagger==0.2.13
flask-wtf>=0.14.3, <0.15
funcsigs>=1.0.0, <2.0.0
graphviz>=0.12
gunicorn>=19.5.0, <20.0
importlib_metadata~=1.7;python_version<"3.9" # We could work with 3.1, but argparse needs <2
importlib_resources~=1.4
iso8601>=0.1.12
itsdangerous>=1.1.0
jinja2>=2.10.1, <2.12.0
json-merge-patch==0.2
jsonschema~=3.0
lazy-object-proxy<1.5.0 # Required to keep pip-check happy with astroid
lockfile>=0.12.2
markdown>=2.5.2, <4.0
markupsafe>=1.1.1, <2.0
marshmallow-oneofschema>=2.0.1
pandas>=0.17.1, <2.0
pendulum~=2.0
pep562~=1.0;python_version<"3.7"
psutil>=4.2.0, <6.0.0
pygments>=2.0.1, <3.0
python-daemon>=2.1.1
python-dateutil>=2.3, <3
python-nvd3~=0.15.0
python-slugify>=3.0.0,<5.0
requests>=2.20.0, <2.24.0 # Required to keep snowflake happy
rich==9.2.0
setproctitle>=1.1.8, <2
sqlalchemy>=1.3.18, <2
sqlalchemy_jsonfield~=1.0
tabulate>=0.7.5, <0.9
tenacity~=6.2.0
termcolor>=1.1.0
thrift>=0.9.2
typing;python_version<"3.6"
typing-extensions>=3.7.4;python_version<"3.8"
tzlocal>=1.4,<2.0.0
unicodecsv>=0.14.1
urllib3<1.26 # Required to keep boto3 happy
werkzeug~=1.0, >=1.0.1
[options.packages.find]
include =
airflow*
[options.package_data]
airflow=
py.typed
alembic.ini
git_version
customized_form_field_behaviours.schema.json
provider.yaml.schema.json
airflow.api_connexion.openapi=*.yaml
airflow.serialization=*.json
[options.entry_points]
console_scripts=
airflow=airflow.__main__:main
[bdist_wheel]
python-tag=py3
[files]
packages = airflow
[easy_install]
[mypy]
ignore_missing_imports = True
no_implicit_optional = True
warn_redundant_casts = True
warn_unused_ignores = False
plugins =
airflow.mypy.plugin.decorators
pretty = True
[mypy-airflow.migrations.*]
ignore_errors = True
[isort]
line_length=110
combine_as_imports = true
default_section = THIRDPARTY
known_first_party=airflow,tests
# Need to be consistent with the exclude config defined in pre-commit-config.yaml
skip=build,.tox,venv
profile = black