nc-user-terminator 0.1.0__tar.gz → 0.1.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 nc-user-terminator might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nc-user-terminator
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: OAuth client wrapper for multi-tenant projects
5
5
  Author: bw_song
6
6
  Author-email: m132777096902@gmail.com
@@ -0,0 +1,10 @@
1
+ from .client import OAuthClient
2
+ from .exceptions import OAuthError
3
+ from .models import UserResponse, OAuth2AuthorizeResponse
4
+
5
+ __all__ = [
6
+ "OAuthClient",
7
+ "OAuthError",
8
+ "UserResponse",
9
+ "OAuth2AuthorizeResponse",
10
+ ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nc-user-terminator
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: OAuth client wrapper for multi-tenant projects
5
5
  Author: bw_song
6
6
  Author-email: m132777096902@gmail.com
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "nc-user-terminator"
7
- version = "0.1.0"
7
+ version = "0.1.1"
8
8
  description = "OAuth client wrapper for multi-tenant projects"
9
9
  authors = [
10
10
  { name = "bw_song" }
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="nc-user-terminator",
5
- version="0.1.0",
5
+ version="0.1.1",
6
6
  packages=find_packages(),
7
7
  install_requires=[
8
8
  ],
@@ -1,10 +0,0 @@
1
- from client import OAuthClient
2
- from exceptions import OAuthError
3
- from models import UserResponse, OAuth2AuthorizeResponse
4
-
5
- __all__ = [
6
- "OAuthClient",
7
- "OAuthError",
8
- "UserResponse",
9
- "OAuth2AuthorizeResponse",
10
- ]