dataflow-core 2.0.0__tar.gz → 2.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.

Potentially problematic release.


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

Files changed (31) hide show
  1. {dataflow_core-2.0.0 → dataflow_core-2.0.1}/PKG-INFO +1 -1
  2. dataflow_core-2.0.1/dataflow/models/__init__.py +0 -0
  3. dataflow_core-2.0.1/dataflow/utils/__init__.py +0 -0
  4. {dataflow_core-2.0.0 → dataflow_core-2.0.1}/dataflow_core.egg-info/PKG-INFO +1 -1
  5. {dataflow_core-2.0.0 → dataflow_core-2.0.1}/setup.py +1 -1
  6. dataflow_core-2.0.0/authenticator/__init__.py +0 -3
  7. dataflow_core-2.0.0/dataflow/__init__.py +0 -1
  8. {dataflow_core-2.0.0 → dataflow_core-2.0.1}/README.md +0 -0
  9. {dataflow_core-2.0.0/authenticator/package → dataflow_core-2.0.1/authenticator}/__init__.py +0 -0
  10. {dataflow_core-2.0.0 → dataflow_core-2.0.1}/authenticator/dataflowairflowauthenticator.py +0 -0
  11. {dataflow_core-2.0.0 → dataflow_core-2.0.1}/authenticator/dataflowhubauthenticator.py +0 -0
  12. {dataflow_core-2.0.0 → dataflow_core-2.0.1}/authenticator/dataflowsupersetauthenticator.py +0 -0
  13. {dataflow_core-2.0.0/authenticator/package/models → dataflow_core-2.0.1/authenticator/package}/__init__.py +0 -0
  14. {dataflow_core-2.0.0 → dataflow_core-2.0.1}/authenticator/package/configuration.py +0 -0
  15. {dataflow_core-2.0.0/dataflow → dataflow_core-2.0.1/authenticator/package}/models/__init__.py +0 -0
  16. {dataflow_core-2.0.0 → dataflow_core-2.0.1}/authenticator/package/models/database.py +0 -0
  17. {dataflow_core-2.0.0 → dataflow_core-2.0.1}/authenticator/package/models/session.py +0 -0
  18. {dataflow_core-2.0.0 → dataflow_core-2.0.1}/authenticator/package/models/user.py +0 -0
  19. {dataflow_core-2.0.0/dataflow/utils → dataflow_core-2.0.1/dataflow}/__init__.py +0 -0
  20. {dataflow_core-2.0.0 → dataflow_core-2.0.1}/dataflow/configuration.py +0 -0
  21. {dataflow_core-2.0.0 → dataflow_core-2.0.1}/dataflow/dataflow.py +0 -0
  22. {dataflow_core-2.0.0 → dataflow_core-2.0.1}/dataflow/models/database.py +0 -0
  23. {dataflow_core-2.0.0 → dataflow_core-2.0.1}/dataflow/models/session.py +0 -0
  24. {dataflow_core-2.0.0 → dataflow_core-2.0.1}/dataflow/models/user.py +0 -0
  25. {dataflow_core-2.0.0 → dataflow_core-2.0.1}/dataflow/utils/aws_secrets_manager.py +0 -0
  26. {dataflow_core-2.0.0 → dataflow_core-2.0.1}/dataflow_core.egg-info/SOURCES.txt +0 -0
  27. {dataflow_core-2.0.0 → dataflow_core-2.0.1}/dataflow_core.egg-info/dependency_links.txt +0 -0
  28. {dataflow_core-2.0.0 → dataflow_core-2.0.1}/dataflow_core.egg-info/entry_points.txt +0 -0
  29. {dataflow_core-2.0.0 → dataflow_core-2.0.1}/dataflow_core.egg-info/requires.txt +0 -0
  30. {dataflow_core-2.0.0 → dataflow_core-2.0.1}/dataflow_core.egg-info/top_level.txt +0 -0
  31. {dataflow_core-2.0.0 → dataflow_core-2.0.1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dataflow-core
3
- Version: 2.0.0
3
+ Version: 2.0.1
4
4
  Summary: Dataflow core package
5
5
  Author: Dataflow
6
6
  Author-email:
File without changes
File without changes
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dataflow-core
3
- Version: 2.0.0
3
+ Version: 2.0.1
4
4
  Summary: Dataflow core package
5
5
  Author: Dataflow
6
6
  Author-email:
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="dataflow-core",
5
- version="2.0.0",
5
+ version="2.0.1",
6
6
  packages=find_packages(exclude=["tests", "tests.*"]),
7
7
  include_package_data=True,
8
8
  package_data={},
@@ -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
File without changes
File without changes