forked from jan/debianmemberportfolio
Merge tag '0.3.2' into develop
Release 0.3.2
This commit is contained in:
commit
a3b5e3f7d2
3 changed files with 9 additions and 5 deletions
|
@ -1,3 +1,7 @@
|
|||
2014-04-10 Jan Dittberner <jan@dittberner.info>
|
||||
* add patch by Paul Wise to use SSL where available
|
||||
* add patch by Paul Wise to fix link to the contributors site
|
||||
|
||||
2014-02-09 Jan Dittberner <jan@dittberner.info>
|
||||
* renamed module from ddportfolio to debianmemberportfolio
|
||||
* add patch for DUCK URL by Paul Wise
|
||||
|
|
|
@ -53,9 +53,9 @@ copyright = u'2009-2014, Jan Dittberner'
|
|||
# built documents.
|
||||
#
|
||||
# The short X.Y version.
|
||||
version = '0.3.1'
|
||||
version = '0.3.2'
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = '0.3.1'
|
||||
release = version
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
|
6
setup.py
6
setup.py
|
@ -28,14 +28,14 @@ except ImportError:
|
|||
|
||||
setup(
|
||||
name='debianmemberportfolio',
|
||||
version='0.3.1',
|
||||
version='0.3.2',
|
||||
description='service to create Debian Member Portfolio URLs',
|
||||
long_description="""This is a service implementation that returns a set of
|
||||
personalized URLs as outlined in http://wiki.debian.org/DDPortfolio. It
|
||||
takes the Debian Member's full name and email address as input and returns
|
||||
a JSON formatted array of URLs.""",
|
||||
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
||||
classifiers=['Development Status :: 3 - Alpha',
|
||||
classifiers=['Development Status :: 5 - Production/Stable',
|
||||
'Environment :: Web Environment',
|
||||
'License :: DFSG approved',
|
||||
'License :: OSI approved :: ' +
|
||||
|
@ -46,7 +46,7 @@ setup(
|
|||
author_email='jan@dittberner.info',
|
||||
url='http://debian-stuff.dittberner.info/debianmemberportfolio',
|
||||
license='AGPL-3.0+',
|
||||
install_requires=["Pylons>=0.10rc1", 'babel>=0.9.4'],
|
||||
install_requires=["Pylons>=1.0", 'babel>=0.9.6'],
|
||||
packages=find_packages(exclude=['ez_setup']),
|
||||
include_package_data=True,
|
||||
test_suite='nose.collector',
|
||||
|
|
Loading…
Reference in a new issue