forked from apache/airflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cleaning up packaging config (apache#2)
- Loading branch information
Showing
1 changed file
with
6 additions
and
10 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,24 +1,20 @@ | ||
import io | ||
import setuptools | ||
|
||
with io.open('README.md', encoding='utf-8') as f: | ||
with open("README.md", "r") as f: | ||
long_description = f.read() | ||
|
||
setuptools.setup( | ||
name="marquez-airflow", | ||
version="0.0.1", | ||
author="Author", | ||
author_email="[email protected]", | ||
version="0.0.2", | ||
author="Marquez Team", | ||
author_email="", | ||
description="Marquez integration with Airflow", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/MarquezProject/marquez-airflow", | ||
packages=setuptools.find_packages(), | ||
install_requires = [ | ||
"apache-airflow>=1.10.0" | ||
], | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: Apache Software License", | ||
"marquez-python>=1.2.1", | ||
"apache-airflow>=1.9.0" | ||
], | ||
) |