From 78beb6fc4cd197d42161bc2ffed57444cdd3b2e6 Mon Sep 17 00:00:00 2001 From: vincent Date: Sun, 6 Dec 2020 13:33:40 +0100 Subject: [PATCH] update to version 0.2.0 remove setup.py --- README.md | 2 +- pyproject.toml | 4 ++-- setup.py | 37 ------------------------------------- 3 files changed, 3 insertions(+), 40 deletions(-) delete mode 100644 setup.py diff --git a/README.md b/README.md index 5823753..75e379f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Datajob -Build and deploy a serverless data pipeline with no effort. +Build and deploy a serverless data pipeline with no effort on AWS. # Installation diff --git a/pyproject.toml b/pyproject.toml index d2b9bed..1b86016 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "datajob" -version = "0.1.0" -description = "library to smooth deployment of data pipelines on AWS." +version = "0.2.0" +description = "Build and deploy a serverless data pipeline with no effort on AWS." authors = ["Vincent Claes "] license = "Apache Software License (Apache 2.0)" diff --git a/setup.py b/setup.py deleted file mode 100644 index fc3f8a8..0000000 --- a/setup.py +++ /dev/null @@ -1,37 +0,0 @@ -# -*- coding: utf-8 -*- - -# DO NOT EDIT THIS FILE! -# This file has been autogenerated by dephell <3 -# https://github.com/dephell/dephell - -try: - from setuptools import setup -except ImportError: - from distutils.core import setup - -readme = "" - -setup( - long_description=readme, - name="datajob", - version="0.1.0", - python_requires="==3.*,>=3.7.0", - author="vincent", - author_email="vclaes1986@gmail.com", - license="apache-2.0", - entry_points={"console_scripts": ["datajob = datajob.datajob:run"]}, - packages=["datajob", "datajob.glue", "datajob.package"], - package_dir={"": "."}, - package_data={}, - install_requires=[ - "aws-cdk.aws-glue==1.*,>=1.70.0", - "aws-cdk.aws-s3-deployment==1.*,>=1.70.0", - "aws-cdk.core==1.*,>=1.70.0", - "aws-empty-bucket==2.*,>=2.4.0", - "contextvars==2.*,>=2.4.0", - "dephell==0.*,>=0.8.3", - "stepfunctions==1.*,>=1.1.2", - "typer==0.*,>=0.3.2", - ], - extras_require={"dev": ["mock==4.*,>=4.0.2", "moto==1.*,>=1.3.16"]}, -)