* Make the safasprovider.py we have in this repo into an identity provider.

This will be used internally to fas2 so we don't need to put it in
  python-fedora.
This commit is contained in:
Toshio Kuratomi 2008-02-29 06:59:46 -08:00
parent 53e0336711
commit 748d8bce76
2 changed files with 10 additions and 5 deletions

View file

@ -17,7 +17,7 @@ setup(
#license=license,
install_requires = [
"TurboGears >= 1.0.1",
"TurboGears >= 1.0.4",
],
scripts = ["start-fas.py"],
zip_safe=False,
@ -35,13 +35,13 @@ setup(
# 'turbogears.command',
# if this has identity providers, uncomment the next line
# 'turbogears.identity.provider',
'turbogears.identity.provider',
# If this is a template plugin, uncomment the next line
# 'python.templating.engines',
# If this is a full application, uncomment the next line
# 'turbogears.app',
'turbogears.app',
],
classifiers = [
'Development Status :: 3 - Alpha',
@ -51,12 +51,17 @@ setup(
'Framework :: TurboGears',
# if this is an application that you'll distribute through
# the Cheeseshop, uncomment the next line
# 'Framework :: TurboGears :: Applications',
'Framework :: TurboGears :: Applications',
# if this is a package that includes widgets that you'll distribute
# through the Cheeseshop, uncomment the next line
# 'Framework :: TurboGears :: Widgets',
],
test_suite = 'nose.collector',
entry_points = {
'turbogears.identity.provider': (
'safas3 = fas.safasprovider:SaFasIdentityProvider',
)
}
)