forked from IdentityPython/SATOSA
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: sort imports and apply the Black style
- Loading branch information
1 parent
bcef9c7
commit 24e8ff3
Showing
89 changed files
with
4,599 additions
and
2,810 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 |
---|---|---|
|
@@ -2,18 +2,18 @@ | |
setup.py | ||
""" | ||
|
||
from setuptools import setup, find_packages | ||
from setuptools import find_packages, setup | ||
|
||
setup( | ||
name='SATOSA', | ||
version='8.4.0', | ||
description='Protocol proxy (SAML/OIDC).', | ||
author='DIRG', | ||
author_email='[email protected]', | ||
license='Apache 2.0', | ||
url='https://github.com/SUNET/SATOSA', | ||
packages=find_packages('src/'), | ||
package_dir={'': 'src'}, | ||
name="SATOSA", | ||
version="8.4.0", | ||
description="Protocol proxy (SAML/OIDC).", | ||
author="DIRG", | ||
author_email="[email protected]", | ||
license="Apache 2.0", | ||
url="https://github.com/SUNET/SATOSA", | ||
packages=find_packages("src/"), | ||
package_dir={"": "src"}, | ||
install_requires=[ | ||
"pyop >= v3.4.0", | ||
"pysaml2 >= 6.5.1", | ||
|
@@ -44,6 +44,8 @@ | |
"Programming Language :: Python :: 3.11", | ||
], | ||
entry_points={ | ||
"console_scripts": ["satosa-saml-metadata=satosa.scripts.satosa_saml_metadata:construct_saml_metadata"] | ||
} | ||
"console_scripts": [ | ||
"satosa-saml-metadata=satosa.scripts.satosa_saml_metadata:construct_saml_metadata" | ||
] | ||
}, | ||
) |
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
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
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
Oops, something went wrong.