File tree 2 files changed +5
-6
lines changed
2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 1
- # ! /usr/bin/env bash
1
+ ! /usr/bin/env bash
2
2
rm -rf aws_glue_etl_docker_deploy
3
3
mkdir aws_glue_etl_docker_deploy
4
4
cd aws_glue_etl_docker_deploy
5
- echo " git+https://github.com/purecloudlabs/aws_glue_etl_docker" > requirements.txt
6
5
mkdir deps
7
6
virtualenv -p python2.7 .
8
- bin/pip2.7 install -r requirements.txt --install-option --install-lib= " $( PWD ) /deps "
7
+ pip install -t deps git+https://github.com/purecloudlabs/aws_glue_etl_docker
9
8
cd deps && zip -r ../aws_glue_etl_docker_deploy.zip . && cd ..
10
9
aws s3 cp ./aws_glue_etl_docker_deploy.zip $1
11
-
10
+
Original file line number Diff line number Diff line change 1
1
from setuptools import setup
2
2
setup (
3
3
name = 'aws_glue_etl_docker' ,
4
- version = '0.4 .0' ,
4
+ version = '0.5 .0' ,
5
5
packages = ['aws_glue_etl_docker' ],
6
6
license = 'mit' ,
7
- install_requires = [ 'boto3' ],
7
+
8
8
entry_points = {
9
9
'console_scripts' : [
10
10
'aws_glue_etl_docker = aws_glue_etl_docker.__main__:main'
You can’t perform that action at this time.
0 commit comments