forked from jan/debianmemberportfolio
update for release 0.3
- bump copyright years - fix PEP8 violations - rewrap lines - bump version number - replace DDPortfolio with Debian Member Portfolio
This commit is contained in:
parent
743d3aea34
commit
43668f662b
2 changed files with 40 additions and 33 deletions
33
setup.py
33
setup.py
|
|
@ -1,24 +1,23 @@
|
|||
# -*- python -*-
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# DDPortfolio service setup
|
||||
# Copyright © 2009, 2010, 2011, 2012, 2013 Jan Dittberner <jan@dittberner.info>
|
||||
# Debian Member Portfolio service setup
|
||||
# Copyright © 2009-2014 Jan Dittberner <jan@dittberner.info>
|
||||
#
|
||||
# This file is part of DDPortfolio service.
|
||||
# This file is part of the Debian Member Portfolio service.
|
||||
#
|
||||
# DDPortfolio 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 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.
|
||||
#
|
||||
# DDPortfolio 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.
|
||||
# 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.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public
|
||||
# License along with this program. If not, see
|
||||
# <http://www.gnu.org/licenses/>.
|
||||
# License along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
try:
|
||||
from setuptools import setup, find_packages
|
||||
|
|
@ -29,11 +28,11 @@ except ImportError:
|
|||
|
||||
setup(
|
||||
name='ddportfolioservice',
|
||||
version='0.2.20',
|
||||
description='service to create DDPortfolio URLs',
|
||||
version='0.3',
|
||||
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 developers
|
||||
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
|
||||
|
|
@ -53,7 +52,7 @@ array of URLs.""",
|
|||
include_package_data=True,
|
||||
test_suite='nose.collector',
|
||||
package_data={'ddportfolioservice': ['*.ini', 'i18n/*/LC_MESSAGES/*.mo']},
|
||||
message_extractors = {'ddportfolioservice': [
|
||||
message_extractors={'ddportfolioservice': [
|
||||
('**.py', 'python', None),
|
||||
('templates/**.mako', 'mako', None),
|
||||
('public/**', 'ignore', None)]},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue