Skip to content

Commit

Permalink
cleaning up packaging config (apache#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
roaraya8 authored Feb 11, 2019
1 parent e40e068 commit 477560f
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions setup.py
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"
],
)

0 comments on commit 477560f

Please sign in to comment.