Preparation for release 2.0.0

This commit is contained in:
Mikaël Ates 2011-12-22 19:11:28 +01:00
parent c3e33cf284
commit a40c0c7b34
3 changed files with 10 additions and 8 deletions

View File

@ -1,8 +1,9 @@
recursive-include data *
recursive-include tests *.db *.py
recursive-include media *.css *.js *.ico *.gif *.png *.jpg README
recursive-include static *.css *.js *.ico *.gif *.png *.jpg
recursive-include authentic2 README fixtures/*.json templates/*.html templates/*/*.html js/*.js templates/*/*/*.html locale/*/*/*.po xrds.xml *.txt yadis.xrdf
include authentic2/sslauth/authentic_ssl.vhost
include doc/*.rst
include doc/pictures/*
include COPYING
include README.rst
include AUTHORS.txt

View File

@ -3,4 +3,4 @@ import os
sys.path.append(os.path.join(os.path.dirname(__file__), 'vendor'))
# The version of Authentic
VERSION = "1.9.1"
VERSION = "2.0.0"

View File

@ -2,8 +2,6 @@
#
'''
Setup script for Authentic 2
It started as a copy of ReviewBoard setup.py file, thanks to them, and for
'''
import distutils.core
import authentic2
@ -22,7 +20,7 @@ def ls_r(directory, target):
distutils.core.setup(name="authentic2",
version=authentic2.VERSION,
license="AGPLv3 or later",
description="Authentic 2, a versatile identity server",
description="Authentic 2, a versatile identity management server",
url="http://dev.entrouvert.org/projects/authentic/",
author="Entr'ouvert",
author_email="authentic-devel@lists.labs.libre-entreprise.org",
@ -30,6 +28,8 @@ distutils.core.setup(name="authentic2",
maintainer_email="bdauvergne@entrouvert.com",
packages=[ 'authentic2',
'authentic2/admin_log_view',
'authentic2/attribute_aggregator',
'authentic2/attribute_aggregator/migrations',
'authentic2/auth2_auth',
'authentic2/auth2_auth/auth2_oath',
'authentic2/auth2_auth/auth2_ssl',
@ -45,6 +45,7 @@ distutils.core.setup(name="authentic2",
'authentic2/idp/management',
'authentic2/idp/management/commands',
'authentic2/idp/migrations',
'authentic2/nonce',
'authentic2/saml',
'authentic2/saml/management',
'authentic2/saml/management/commands',
@ -60,9 +61,9 @@ distutils.core.setup(name="authentic2",
],
package_data={ '': ['fixtures/*.json',
'templates/*.html','templates/*/*.html','js/*.js'] },
data_files=list(ls_r('media', 'share/authentic2/')),
data_files=list(ls_r('static', 'share/authentic2/')),
requires=[
'django (>=1.2.0)',
'django (>=1.3.0)',
'registration (>=0.7)',
'debug_toolbar',
'django_authopenid (>=1.0)',