forked from astronomer/astro-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (49 loc) · 1.44 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
52
53
54
55
56
57
58
[build-system]
requires = ["flit_core ~=3.2"]
build-backend = "flit_core.buildapi"
[project]
name = "astro-projects"
dynamic = ["version", "description"]
authors = [
{name = "Daniel Imberman", email = "daniel@astronomer.io"},
{name = "Plinio Guzman"},
]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.7"
dependencies = [
"apache-airflow >=2.0",
"apache-airflow-providers-postgres",
"apache-airflow-providers-snowflake",
"boto3 ==1.18.65",
"pandas >=1.3.4",
"s3fs",
"snowflake-sqlalchemy ==1.2.0",
"snowflake-connector-python[pandas]",
]
keywords = ["airflow", "provider", "astronomer", "sql", "decorator"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Database",
]
[project.optional-dependencies]
tests = [
"pytest >=6.0",
"pytest-dotenv",
"requests-mock",
]
[project.urls]
Home = "http://astronomer.io/"
[project.entry-points.apache_airflow_provider]
provider_info = "astro.__init__:get_provider_info"
[tool.pytest.ini_options]
env_files = [".env"]
testpaths = ["tests"]
[tool.flit.module]
name = "astro" # Or "astro.sql" if you just want this directory, not the entire 'astro'.