AWSGlueDataplanePython 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- AWSGlueDataplanePython-0.0.1/AWSGlueDataplanePython.egg-info/PKG-INFO +13 -0
- AWSGlueDataplanePython-0.0.1/AWSGlueDataplanePython.egg-info/SOURCES.txt +5 -0
- AWSGlueDataplanePython-0.0.1/AWSGlueDataplanePython.egg-info/dependency_links.txt +1 -0
- AWSGlueDataplanePython-0.0.1/AWSGlueDataplanePython.egg-info/top_level.txt +1 -0
- AWSGlueDataplanePython-0.0.1/PKG-INFO +13 -0
- AWSGlueDataplanePython-0.0.1/setup.cfg +4 -0
- AWSGlueDataplanePython-0.0.1/setup.py +18 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Metadata-Version: 1.1
|
|
2
|
+
Name: AWSGlueDataplanePython
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: This package is parked by AWS Glue.
|
|
5
|
+
Home-page: UNKNOWN
|
|
6
|
+
Author: awsglue
|
|
7
|
+
Author-email: UNKNOWN
|
|
8
|
+
License: UNKNOWN
|
|
9
|
+
Description: UNKNOWN
|
|
10
|
+
Platform: UNKNOWN
|
|
11
|
+
Classifier: Development Status :: 7 - Inactive
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Classifier: Topic :: Utilities
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Metadata-Version: 1.1
|
|
2
|
+
Name: AWSGlueDataplanePython
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: This package is parked by AWS Glue.
|
|
5
|
+
Home-page: UNKNOWN
|
|
6
|
+
Author: awsglue
|
|
7
|
+
Author-email: UNKNOWN
|
|
8
|
+
License: UNKNOWN
|
|
9
|
+
Description: UNKNOWN
|
|
10
|
+
Platform: UNKNOWN
|
|
11
|
+
Classifier: Development Status :: 7 - Inactive
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Classifier: Topic :: Utilities
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import sys
|
|
2
|
+
from setuptools import setup
|
|
3
|
+
|
|
4
|
+
args = ' '.join(sys.argv).strip()
|
|
5
|
+
if not any(args.endswith(suffix) for suffix in ['setup.py sdist', 'setup.py check -r -s']):
|
|
6
|
+
raise ImportError('This package is parked by AWS Glue.')
|
|
7
|
+
|
|
8
|
+
setup(
|
|
9
|
+
name='AWSGlueDataplanePython',
|
|
10
|
+
author='awsglue',
|
|
11
|
+
version='0.0.1',
|
|
12
|
+
description='This package is parked by AWS Glue.',
|
|
13
|
+
classifiers=[
|
|
14
|
+
'Development Status :: 7 - Inactive',
|
|
15
|
+
'Operating System :: OS Independent',
|
|
16
|
+
'Topic :: Utilities'
|
|
17
|
+
]
|
|
18
|
+
)
|