-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
58 lines (54 loc) · 1.82 KB
/
setup.py
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
52
53
54
55
56
57
58
"""
Setup.py for FastETL Airflow provider package.
"""
import os
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
__version__ = os.environ.get("TAG_NAME", "0.0.0-dev")
"""Perform the package apache-airflow-providers-fastetl setup."""
setup(
name="apache-airflow-providers-fastetl",
version=__version__,
description="FastETL custom package Apache Airflow provider.",
long_description=long_description,
long_description_content_type="text/markdown",
entry_points={"apache_airflow_provider": ["provider_info=fastetl.__init__:get_provider_info"]},
license="Apache License 2.0",
packages=find_packages(exclude=["*tests.*", "*tests"]),
package_data={'': ['*.yml']},
include_package_data=True,
install_requires=[
"apache-airflow>=2.3",
"apache-airflow-providers-microsoft-mssql",
"apache-airflow-providers-mysql",
"apache-airflow-providers-postgres",
"apache-airflow-providers-common-sql",
"alembic>=1.8.1",
"beautifulsoup4>=4.1.11",
"ckanapi>=4.6",
"frictionless>=5.11.1",
"markdown>=3.4.1",
"odfpy>=1.4.1",
"pandas>=1.5.2,<2",
"psycopg2>=2.9.5",
"pygsheets>=2.0.5",
"pyodbc>=4.0.35",
"pysmb>=1.2.6",
"python-slugify>=7.0.0",
"pytz>=2022.6",
"requests>=2.28.1",
"SQLAlchemy>=1.4.44",
"PyYAML==6.0",
"openmetadata-ingestion==1.5.2.0"
],
setup_requires=["setuptools", "wheel"],
author="Time de Dados CGINF",
author_email="seges.cginf@economia.gov.br",
url="https://github.com/gestaogovbr/FastETL",
classifiers=[
"Framework :: Apache Airflow",
"Framework :: Apache Airflow :: Provider",
],
python_requires="~=3.8",
)