-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style: format code with Autopep8, Black, isort and Yapf
This commit fixes the style issues introduced in 5ae1da9 according to the output from Autopep8, Black, isort and Yapf. Details: None
- Loading branch information
1 parent
5ae1da9
commit 93fe31f
Showing
2 changed files
with
78 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
from setuptools import setup, find_packages | ||
import os | ||
|
||
from setuptools import find_packages, setup | ||
|
||
this_directory = os.path.abspath(os.path.dirname(__file__)) | ||
with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f: | ||
with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f: | ||
long_description = f.read() | ||
|
||
|
||
setup( | ||
name='trustauthx', | ||
version='0.5.1', | ||
description='Official connector SDK for TrustAuthx', | ||
name="trustauthx", | ||
version="0.5.1", | ||
description="Official connector SDK for TrustAuthx", | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', # This is important! | ||
author='moonlightnexus', | ||
author_email='[email protected]', | ||
long_description_content_type="text/markdown", # This is important! | ||
author="moonlightnexus", | ||
author_email="[email protected]", | ||
url="https://github.com/One-Click-Auth/TrustAuthx-Py-SDK.git", | ||
license="MIT", | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python :: 3.9', | ||
], | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3.9", | ||
], | ||
packages=find_packages(), | ||
install_requires=[ | ||
"certifi>=2023.5.7", | ||
|
@@ -37,11 +37,11 @@ | |
"urllib3<=3.0.0", | ||
"charset-normalizer>=3.2.0", | ||
"python-jose>=3.3.0", | ||
"python-dotenv==1.0.0" | ||
], | ||
"python-dotenv==1.0.0", | ||
], | ||
entry_points={ | ||
'console_scripts': [ | ||
'trustauthx = trustauthx.cli:main', | ||
"console_scripts": [ | ||
"trustauthx = trustauthx.cli:main", | ||
], | ||
}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters