dataflow-core 2.0.2__tar.gz → 2.0.3__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.

Potentially problematic release.


This version of dataflow-core might be problematic. Click here for more details.

Files changed (33) hide show
  1. dataflow_core-2.0.3/PKG-INFO +10 -0
  2. {dataflow-core-2.0.2 → dataflow_core-2.0.3}/README.md +0 -0
  3. {dataflow-core-2.0.2/authenticator/package → dataflow_core-2.0.3/authenticator}/__init__.py +0 -0
  4. {dataflow-core-2.0.2 → dataflow_core-2.0.3}/authenticator/dataflowairflowauthenticator.py +0 -0
  5. {dataflow-core-2.0.2 → dataflow_core-2.0.3}/authenticator/dataflowhubauthenticator.py +0 -0
  6. {dataflow-core-2.0.2 → dataflow_core-2.0.3}/authenticator/dataflowsupersetauthenticator.py +0 -0
  7. {dataflow-core-2.0.2/authenticator/package/models → dataflow_core-2.0.3/authenticator/package}/__init__.py +0 -0
  8. {dataflow-core-2.0.2 → dataflow_core-2.0.3}/authenticator/package/configuration.py +0 -0
  9. {dataflow-core-2.0.2/dataflow → dataflow_core-2.0.3/authenticator/package}/models/__init__.py +0 -0
  10. {dataflow-core-2.0.2 → dataflow_core-2.0.3}/authenticator/package/models/database.py +0 -0
  11. {dataflow-core-2.0.2 → dataflow_core-2.0.3}/authenticator/package/models/session.py +0 -0
  12. {dataflow-core-2.0.2 → dataflow_core-2.0.3}/authenticator/package/models/user.py +0 -0
  13. {dataflow-core-2.0.2/dataflow/utils → dataflow_core-2.0.3/dataflow}/__init__.py +0 -0
  14. {dataflow-core-2.0.2 → dataflow_core-2.0.3}/dataflow/configuration.py +0 -0
  15. {dataflow-core-2.0.2 → dataflow_core-2.0.3}/dataflow/dataflow.py +0 -0
  16. dataflow_core-2.0.3/dataflow/models/__init__.py +0 -0
  17. {dataflow-core-2.0.2 → dataflow_core-2.0.3}/dataflow/models/database.py +0 -0
  18. {dataflow-core-2.0.2 → dataflow_core-2.0.3}/dataflow/models/session.py +0 -0
  19. {dataflow-core-2.0.2 → dataflow_core-2.0.3}/dataflow/models/user.py +0 -0
  20. dataflow_core-2.0.3/dataflow/utils/__init__.py +0 -0
  21. {dataflow-core-2.0.2 → dataflow_core-2.0.3}/dataflow/utils/aws_secrets_manager.py +0 -0
  22. dataflow_core-2.0.3/dataflow_core.egg-info/PKG-INFO +10 -0
  23. {dataflow-core-2.0.2 → dataflow_core-2.0.3}/dataflow_core.egg-info/SOURCES.txt +0 -0
  24. {dataflow-core-2.0.2 → dataflow_core-2.0.3}/dataflow_core.egg-info/dependency_links.txt +0 -0
  25. {dataflow-core-2.0.2 → dataflow_core-2.0.3}/dataflow_core.egg-info/entry_points.txt +0 -1
  26. {dataflow-core-2.0.2 → dataflow_core-2.0.3}/dataflow_core.egg-info/requires.txt +0 -0
  27. {dataflow-core-2.0.2 → dataflow_core-2.0.3}/dataflow_core.egg-info/top_level.txt +0 -0
  28. {dataflow-core-2.0.2 → dataflow_core-2.0.3}/setup.cfg +0 -0
  29. {dataflow-core-2.0.2 → dataflow_core-2.0.3}/setup.py +1 -1
  30. dataflow-core-2.0.2/PKG-INFO +0 -10
  31. dataflow-core-2.0.2/authenticator/__init__.py +0 -3
  32. dataflow-core-2.0.2/dataflow/__init__.py +0 -1
  33. dataflow-core-2.0.2/dataflow_core.egg-info/PKG-INFO +0 -10
@@ -0,0 +1,10 @@
1
+ Metadata-Version: 2.1
2
+ Name: dataflow-core
3
+ Version: 2.0.3
4
+ Summary: Dataflow core package
5
+ Author: Dataflow
6
+ Author-email:
7
+ Requires-Dist: sqlalchemy
8
+ Requires-Dist: boto3
9
+ Requires-Dist: psycopg2-binary
10
+ Requires-Dist: pymysql
File without changes
File without changes
File without changes
@@ -0,0 +1,10 @@
1
+ Metadata-Version: 2.1
2
+ Name: dataflow-core
3
+ Version: 2.0.3
4
+ Summary: Dataflow core package
5
+ Author: Dataflow
6
+ Author-email:
7
+ Requires-Dist: sqlalchemy
8
+ Requires-Dist: boto3
9
+ Requires-Dist: psycopg2-binary
10
+ Requires-Dist: pymysql
@@ -1,3 +1,2 @@
1
1
  [jupyterhub.authenticators]
2
2
  dataflow_authenticator = authenticator.dataflowhubauthenticator:DataflowHubAuthenticator
3
-
File without changes
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="dataflow-core",
5
- version="2.0.2",
5
+ version="2.0.3",
6
6
  packages=find_packages(exclude=["tests", "tests.*"]),
7
7
  include_package_data=True,
8
8
  package_data={},
@@ -1,10 +0,0 @@
1
- Metadata-Version: 1.0
2
- Name: dataflow-core
3
- Version: 2.0.2
4
- Summary: Dataflow core package
5
- Home-page: UNKNOWN
6
- Author: Dataflow
7
- Author-email: UNKNOWN
8
- License: UNKNOWN
9
- Description: UNKNOWN
10
- Platform: UNKNOWN
@@ -1,3 +0,0 @@
1
- from .dataflowhubauthenticator import DataflowHubAuthenticator
2
- from .dataflowairflowauthenticator import DataflowAirflowAuthenticator
3
- from .dataflowsupersetauthenticator import DataflowSupersetAuthenticator
@@ -1 +0,0 @@
1
- from .dataflow import Dataflow
@@ -1,10 +0,0 @@
1
- Metadata-Version: 1.0
2
- Name: dataflow-core
3
- Version: 2.0.2
4
- Summary: Dataflow core package
5
- Home-page: UNKNOWN
6
- Author: Dataflow
7
- Author-email: UNKNOWN
8
- License: UNKNOWN
9
- Description: UNKNOWN
10
- Platform: UNKNOWN