Skip to content

Commit 3d7c1cc

Browse files
committed
Move uw_saml to uw_saml2 to avoid collision.
1 parent b8c987a commit 3d7c1cc

File tree

10 files changed

+6
-3
lines changed

10 files changed

+6
-3
lines changed

MANIFEST.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
include README.md
2+
include uw_saml2/VERSION
3+
global-exclude *.pyc __pycache__

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from setuptools import setup, find_packages
33

44
BASE_DIR = os.path.abspath(os.path.dirname(__file__))
5-
VERSION_FILE = os.path.join(BASE_DIR, 'uw_saml', 'VERSION')
5+
VERSION_FILE = os.path.join(BASE_DIR, 'uw_saml2', 'VERSION')
66
with open(VERSION_FILE) as f:
77
VERSION = f.readlines()[-1].strip()
88

@@ -14,7 +14,7 @@
1414
url='https://github.com/UWIT-IAM/uw-saml-python',
1515
author='UW-IT Identity and Access Management',
1616
author_email='help@uw.edu',
17-
description='UW-specific adapter to the python3-saml package.',
17+
description='A UW-specific adapter to the python3-saml package.',
1818
long_description=LONG_DESCRIPTION,
1919
long_description_content_type='text/markdown',
2020
license='Apache License, Version 2.0',
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

uw_saml/sp.py renamed to uw_saml2/sp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def config(self, idp, two_factor=False):
3636
'sp': {
3737
'entityId': self.entity_id,
3838
'assertionConsumerService': {
39-
'url': sp.acs_url,
39+
'url': self.acs_url,
4040
'binding': 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST'
4141
},
4242
'x509cert': self.cert,

0 commit comments

Comments
 (0)