switch from ddportfolio to debianmemberportfolio

- change all references from ddportfolio to debianmemberportfolio
- rename debianmemberportfolio.controllers.DDPortfolioController to
  debianmemberportfolio.controllers.Controller
- update documentation
- update copyright years, unify file header formatting
This commit is contained in:
Jan Dittberner 2014-02-08 23:54:51 +01:00
parent 780e10494e
commit b670f58c7a
45 changed files with 1217 additions and 1123 deletions

View file

@ -1,17 +1,17 @@
# -*- python -*-
# -*- coding: utf-8 -*-
#
# Debian Member Portfolio service setup
# Debian Member Portfolio Service setup
# Copyright © 2009-2014 Jan Dittberner <jan@dittberner.info>
#
# This file is part of the Debian Member Portfolio service.
# This file is part of the Debian Member Portfolio Service.
#
# Debian Member Portfolio service is free software: you can redistribute it
# Debian Member Portfolio Service is free software: you can redistribute it
# and/or modify it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the License,
# or (at your option) any later version.
#
# Debian Member Portfolio service is distributed in the hope that it will be
# Debian Member Portfolio Service is distributed in the hope that it will be
# useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
# General Public License for more details.
@ -27,14 +27,13 @@ except ImportError:
from setuptools import setup, find_packages
setup(
name='ddportfolioservice',
version='0.3',
name='debianmemberportfolio',
version='0.3.1',
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.""",
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',
'Environment :: Web Environment',
@ -45,21 +44,22 @@ array of URLs.""",
keywords='Debian service JSON',
author='Jan Dittberner',
author_email='jan@dittberner.info',
url='http://debian-stuff.dittberner.info/ddportfolioservice',
url='http://debian-stuff.dittberner.info/debianmemberportfolio',
license='AGPL-3.0+',
install_requires=["Pylons>=0.10rc1", 'babel>=0.9.4'],
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
test_suite='nose.collector',
package_data={'ddportfolioservice': ['*.ini', 'i18n/*/LC_MESSAGES/*.mo']},
message_extractors={'ddportfolioservice': [
package_data={'debianmemberportfolio':
['*.ini', 'i18n/*/LC_MESSAGES/*.mo']},
message_extractors={'debianmemberportfolio': [
('**.py', 'python', None),
('templates/**.mako', 'mako', None),
('public/**', 'ignore', None)]},
zip_safe=False,
entry_points="""
[paste.app_factory]
main = ddportfolioservice.config.middleware:make_app
main = debianmemberportfolio.config.middleware:make_app
[paste.app_install]
main = pylons.util:PylonsInstaller