-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Astronomer as project author (#15)
Plus a little drive-by formatting too.
- Loading branch information
Showing
1 changed file
with
20 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,31 @@ | ||
[build-system] | ||
requires = ["setuptools", "wheel"] | ||
requires = [ | ||
"setuptools", | ||
"wheel" | ||
] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "airflow-provider-sample" | ||
authors = [ | ||
{name = "Pete DeJoy", email = "[email protected]"}, | ||
{name = "Josh Fell", email = "[email protected]"}, | ||
{ name = "Pete DeJoy", email = "[email protected]" }, | ||
{ name = "Josh Fell", email = "[email protected]" }, | ||
{ name = "Astronomer", email = "[email protected]" }, | ||
|
||
] | ||
license = {text = "Apache License 2.0"} | ||
license = { text = "Apache License 2.0" } | ||
description = "A sample Apache Airflow provider package built by Astronomer." | ||
classifiers = [ | ||
"Framework :: Apache Airflow", | ||
"Framework :: Apache Airflow :: Provider", | ||
] | ||
dynamic = ["version"] | ||
dynamic = [ | ||
"version" | ||
] | ||
requires-python = "~=3.8" | ||
dependencies = ["apache-airflow>=2.4"] | ||
dependencies = [ | ||
"apache-airflow>=2.4" | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://astronomer.io" | ||
|
@@ -33,7 +42,10 @@ provider_info = "sample_provider.__init__:get_provider_info" | |
include-package-data = false | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "sample_provider.__version__"} | ||
version = { attr = "sample_provider.__version__" } | ||
|
||
[tool.setuptools.packages.find] | ||
exclude = ["*tests.*", "*tests"] | ||
exclude = [ | ||
"*tests.*", | ||
"*tests" | ||
] |