Skip to content

Commit 8ac5801

Browse files
author
Kevin Glinski
authored
Merge pull request #1 from purecloudlabs/fixpackage
Fixpackage
2 parents 832999e + 3adb4c3 commit 8ac5801

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

Diff for: deploytos3.sh renamed to createdeployzip.sh

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
#!/usr/bin/env bash
1+
!/usr/bin/env bash
22
rm -rf aws_glue_etl_docker_deploy
33
mkdir aws_glue_etl_docker_deploy
44
cd aws_glue_etl_docker_deploy
5-
echo "git+https://github.com/purecloudlabs/aws_glue_etl_docker" > requirements.txt
65
mkdir deps
76
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
98
cd deps && zip -r ../aws_glue_etl_docker_deploy.zip . && cd ..
109
aws s3 cp ./aws_glue_etl_docker_deploy.zip $1
11-
10+

Diff for: setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
from setuptools import setup
22
setup(
33
name = 'aws_glue_etl_docker',
4-
version = '0.4.0',
4+
version = '0.5.0',
55
packages = ['aws_glue_etl_docker'],
66
license='mit',
7-
install_requires = ['boto3'],
7+
88
entry_points = {
99
'console_scripts': [
1010
'aws_glue_etl_docker = aws_glue_etl_docker.__main__:main'

0 commit comments

Comments
 (0)