brynq-sdk-sharepoint 1.1.1__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.0
2
2
  Name: brynq_sdk_sharepoint
3
- Version: 1.1.1
3
+ Version: 2.0.1
4
4
  Summary: Sharepoint wrapper from BrynQ
5
5
  Home-page: UNKNOWN
6
6
  Author: BrynQ
@@ -0,0 +1 @@
1
+ from .sharepoint import Sharepoint
@@ -1,10 +1,10 @@
1
+ from brynq_sdk_brynq import BrynQ
1
2
  import os
2
3
  from typing import List, Union
3
4
  import requests
4
5
  import json
5
6
  from io import BytesIO
6
7
  import typing
7
- from brynq_sdk.brynq import BrynQ
8
8
 
9
9
 
10
10
  class Sharepoint(BrynQ):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.0
2
2
  Name: brynq-sdk-sharepoint
3
- Version: 1.1.1
3
+ Version: 2.0.1
4
4
  Summary: Sharepoint wrapper from BrynQ
5
5
  Home-page: UNKNOWN
6
6
  Author: BrynQ
@@ -1,6 +1,6 @@
1
1
  setup.py
2
- brynq_sdk/sharepoint/__init__.py
3
- brynq_sdk/sharepoint/sharepoint.py
2
+ brynq_sdk_sharepoint/__init__.py
3
+ brynq_sdk_sharepoint/sharepoint.py
4
4
  brynq_sdk_sharepoint.egg-info/PKG-INFO
5
5
  brynq_sdk_sharepoint.egg-info/SOURCES.txt
6
6
  brynq_sdk_sharepoint.egg-info/dependency_links.txt
@@ -0,0 +1,2 @@
1
+ brynq-sdk-brynq>=2
2
+ requests<=3,>=2
@@ -0,0 +1 @@
1
+ brynq_sdk_sharepoint
@@ -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_sharepoint',
6
- version='1.1.1',
5
+ version='2.0.1',
7
6
  description='Sharepoint wrapper from BrynQ',
8
7
  long_description='Sharepoint wrapper from BrynQ',
9
8
  author='BrynQ',
10
9
  author_email='support@brynq.com',
11
- packages=["brynq_sdk.sharepoint"],
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
  'requests>=2,<=3'
16
15
  ],
17
16
  zip_safe=False,
@@ -1 +0,0 @@
1
- from brynq_sdk.sharepoint.sharepoint import Sharepoint
@@ -1,2 +0,0 @@
1
- brynq-sdk-brynq>=1
2
- requests<=3,>=2