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.
@@ -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,5 @@
1
+ setup.py
2
+ AWSGlueDataplanePython.egg-info/PKG-INFO
3
+ AWSGlueDataplanePython.egg-info/SOURCES.txt
4
+ AWSGlueDataplanePython.egg-info/dependency_links.txt
5
+ AWSGlueDataplanePython.egg-info/top_level.txt
@@ -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,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -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
+ )