diff --git a/.gitignore b/.gitignore index 0d743ee..c0c758c 100644 --- a/.gitignore +++ b/.gitignore @@ -63,3 +63,5 @@ target/ .DS_Store +# IDE stuff +./idea diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/lambda_packages/GDAL/README.md b/lambda_packages/GDAL/README.md new file mode 100644 index 0000000..ddb29a3 --- /dev/null +++ b/lambda_packages/GDAL/README.md @@ -0,0 +1,3 @@ +# lxml + +This package was contributed without deterministic build instructions - use it at your own risk. diff --git a/lambda_packages/GDAL/gdal-2.0.0-amz1.tar.gz b/lambda_packages/GDAL/gdal-2.0.0-amz1.tar.gz new file mode 100644 index 0000000..42da1b1 Binary files /dev/null and b/lambda_packages/GDAL/gdal-2.0.0-amz1.tar.gz differ diff --git a/lambda_packages/__init__.py b/lambda_packages/__init__.py index b60927e..ce20d88 100644 --- a/lambda_packages/__init__.py +++ b/lambda_packages/__init__.py @@ -45,5 +45,12 @@ 'version': '1.4', 'path': os.path.join(os.path.dirname(os.path.abspath(__file__)), 'cryptography', 'cryptography-1.4.tar.gz') + }, + 'GDAL': { + 'version': '2.0.0', + 'path': os.path.join(os.path.dirname(os.path.abspath(__file__)), + 'GDAL', 'gdal-2.0.0-amz1.tar.gz') } + + } diff --git a/test.py b/test.py index ec4c7b8..0c2a04e 100644 --- a/test.py +++ b/test.py @@ -4,4 +4,4 @@ def test_packages(): for name, details in lambda_packages.items(): - assert_true(os.path.exists(details['path'])) \ No newline at end of file + assert_true(os.path.exists(details['path']))