brynq-sdk-google-drive 0.2.0__tar.gz → 1.0.0__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.0
2
2
  Name: brynq_sdk_google_drive
3
- Version: 0.2.0
3
+ Version: 1.0.0
4
4
  Summary: Google Drive wrapper from BrynQ
5
5
  Home-page: UNKNOWN
6
6
  Author: BrynQ
@@ -0,0 +1 @@
1
+ from .google_drive import GoogleDrive
@@ -6,8 +6,7 @@ from io import BytesIO
6
6
  import typing
7
7
  from googleapiclient.discovery import build
8
8
  from googleapiclient.http import MediaFileUpload
9
- from brynq_sdk.brynq import BrynQ
10
-
9
+ from brynq_sdk_brynq import BrynQ
11
10
 
12
11
  class GoogleDrive(BrynQ):
13
12
  def __init__(self, label: Union[str, List], debug: bool = False):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.0
2
2
  Name: brynq-sdk-google-drive
3
- Version: 0.2.0
3
+ Version: 1.0.0
4
4
  Summary: Google Drive wrapper from BrynQ
5
5
  Home-page: UNKNOWN
6
6
  Author: BrynQ
@@ -1,6 +1,6 @@
1
1
  setup.py
2
- brynq_sdk/google_drive/__init__.py
3
- brynq_sdk/google_drive/google_drive.py
2
+ brynq_sdk_google_drive/__init__.py
3
+ brynq_sdk_google_drive/google_drive.py
4
4
  brynq_sdk_google_drive.egg-info/PKG-INFO
5
5
  brynq_sdk_google_drive.egg-info/SOURCES.txt
6
6
  brynq_sdk_google_drive.egg-info/dependency_links.txt
@@ -1,3 +1,3 @@
1
- brynq-sdk-brynq>=1
1
+ brynq-sdk-brynq>=2
2
2
  google-api-python-client<3,>=2
3
3
  requests<=3,>=2
@@ -0,0 +1 @@
1
+ brynq_sdk_google_drive
@@ -1,17 +1,16 @@
1
- from setuptools import setup
2
-
1
+ from setuptools import setup, find_namespace_packages
3
2
 
4
3
  setup(
5
4
  name='brynq_sdk_google_drive',
6
- version='0.2.0',
5
+ version='1.0.0',
7
6
  description='Google Drive wrapper from BrynQ',
8
7
  long_description='Groogle Drive wrapper from BrynQ',
9
8
  author='BrynQ',
10
9
  author_email='support@brynq.com',
11
- packages=["brynq_sdk.google_drive"],
10
+ packages=find_namespace_packages(include=['brynq_sdk*']),
12
11
  license='BrynQ License',
13
12
  install_requires=[
14
- 'brynq-sdk-brynq>=1',
13
+ 'brynq-sdk-brynq>=2',
15
14
  'google-api-python-client>=2,<3',
16
15
  'requests>=2,<=3'
17
16
  ],
@@ -1 +0,0 @@
1
- from brynq_sdk.google_drive.google_drive import GoogleDrive