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
d091f448
Commit
d091f448
authored
Sep 10, 2015
by
Ricardo Kirkner
Browse files
Options
Browse Files
Download
Plain Diff
replace distutils by setuptools
use setuptools so wheels can be built
parents
201c1f3a
63b625b3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
15 deletions
+16
-15
setup.py
+16
-15
No files found.
setup.py
View file @
d091f448
#!/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,7 +39,7 @@ library also includes the following features:
...
@@ -39,7 +39,7 @@ 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
)
...
@@ -48,6 +48,18 @@ VERSION = '0.6'
...
@@ -48,6 +48,18 @@ VERSION = '0.6'
setup
(
setup
(
name
=
'django-openid-auth'
,
name
=
'django-openid-auth'
,
version
=
VERSION
,
version
=
VERSION
,
packages
=
find_packages
(),
install_requires
=
[
'django>=1.4'
,
'python-openid>=2.2.0'
,
'south'
,
],
package_data
=
{
'django_openid_auth'
:
[
'templates/openid/*.html'
],
},
# 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 +70,7 @@ setup(
...
@@ -58,7 +70,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 +79,4 @@ setup(
...
@@ -67,15 +79,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