Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
django-openid-auth
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
django-openid-auth
Commits
14728f67
Commit
14728f67
authored
Feb 23, 2015
by
Ricardo Kirkner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
replace distutils by setuptools
use setuptools so wheels can be built
parent
6f4e845e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
16 deletions
+18
-16
setup.py
+18
-16
No files found.
setup.py
View file @
14728f67
#!/usr/bin/env python
#!/usr/bin/env python
# django-openid-auth - OpenID integration for django.contrib.auth
# django-openid-auth - OpenID integration for django.contrib.auth
#
#
# Copyright (C) 2009-201
3
Canonical Ltd.
# Copyright (C) 2009-201
5
Canonical Ltd.
#
#
# Redistribution and use in source and binary forms, with or without
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# modification, are permitted provided that the following conditions
...
@@ -39,15 +39,28 @@ library also includes the following features:
...
@@ -39,15 +39,28 @@ library also includes the following features:
info.
info.
"""
"""
from
distutils.core
import
setup
from
setuptools
import
find_packages
,
setup
description
,
long_description
=
__doc__
.
split
(
'
\n\n
'
,
1
)
description
,
long_description
=
__doc__
.
split
(
'
\n\n
'
,
1
)
VERSION
=
'0.5'
VERSION
=
'0.5
.1
'
setup
(
setup
(
name
=
'django-openid-auth'
,
name
=
'django-openid-auth'
,
version
=
VERSION
,
version
=
VERSION
,
packages
=
find_packages
(),
install_requires
=
[
'django>=1.4'
,
'openid>=2.2.0'
,
'south'
,
],
package_data
=
{
'django_openid_auth'
:
[
'templates/openid/*.html'
],
},
provides
=
[
'django_openid_auth'
],
# metadata for upload to PyPI
author
=
'Canonical Ltd'
,
author
=
'Canonical Ltd'
,
author_email
=
'noreply@canonical.com'
,
author_email
=
'noreply@canonical.com'
,
description
=
description
,
description
=
description
,
...
@@ -58,7 +71,7 @@ setup(
...
@@ -58,7 +71,7 @@ setup(
download_url
=
(
'http://launchpad.net/django-openid-auth/trunk/
%
s/+download'
download_url
=
(
'http://launchpad.net/django-openid-auth/trunk/
%
s/+download'
'/django-openid-auth-
%
s.tar.gz'
%
(
VERSION
,
VERSION
)),
'/django-openid-auth-
%
s.tar.gz'
%
(
VERSION
,
VERSION
)),
classifiers
=
[
classifiers
=
[
'Development Status ::
4 - Beta
'
,
'Development Status ::
5 - Production/Stable
'
,
'Environment :: Web Environment'
,
'Environment :: Web Environment'
,
'Framework :: Django'
,
'Framework :: Django'
,
'Intended Audience :: Developers'
,
'Intended Audience :: Developers'
,
...
@@ -67,15 +80,4 @@ setup(
...
@@ -67,15 +80,4 @@ setup(
'Programming Language :: Python'
,
'Programming Language :: Python'
,
'Topic :: Software Development :: Libraries :: Python Modules'
'Topic :: Software Development :: Libraries :: Python Modules'
],
],
packages
=
[
)
'django_openid_auth'
,
'django_openid_auth.management'
,
'django_openid_auth.management.commands'
,
'django_openid_auth.tests'
,
],
package_data
=
{
'django_openid_auth'
:
[
'templates/openid/*.html'
],
},
provides
=
[
'django_openid_auth'
],
requires
=
[
'django (>=1.4)'
,
'openid (>=2.2.0)'
,
'south'
],
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment