2009-01-21 16:11:39 +01:00
|
|
|
# -*- python -*-
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
# DDPortfolio service setup
|
2012-01-07 01:50:29 +01:00
|
|
|
# Copyright © 2009, 2010, 2011, 2012 Jan Dittberner <jan@dittberner.info>
|
2009-01-21 16:11:39 +01:00
|
|
|
#
|
|
|
|
# This file is part of DDPortfolio 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.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
# 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/>.
|
|
|
|
#
|
2009-01-20 22:39:05 +01:00
|
|
|
try:
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
except ImportError:
|
|
|
|
from ez_setup import use_setuptools
|
|
|
|
use_setuptools()
|
|
|
|
from setuptools import setup, find_packages
|
2009-01-20 15:33:18 +01:00
|
|
|
|
2009-01-20 22:39:05 +01:00
|
|
|
setup(
|
|
|
|
name='ddportfolioservice',
|
2012-06-19 20:02:42 +02:00
|
|
|
version='0.2.8.2',
|
2009-01-20 22:39:05 +01:00
|
|
|
description='service to create DDPortfolio URLs',
|
|
|
|
long_description="""This is a service implementation that
|
2009-01-20 15:33:18 +01:00
|
|
|
returns a set of personalized URLs as outlined in
|
|
|
|
http://wiki.debian.org/DDPortfolio. It takes the Debian developers
|
|
|
|
full name and email address as input and returns a JSON formatted
|
|
|
|
array of URLs.""",
|
2009-01-20 22:39:05 +01:00
|
|
|
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
|
|
|
classifiers=['Development Status :: 3 - Alpha',
|
|
|
|
'Environment :: Web Environment',
|
|
|
|
'License :: DFSG approved',
|
|
|
|
'License :: OSI approved :: ' +
|
|
|
|
'GNU Affero General Public License v3',
|
|
|
|
'Programming Language :: Python'],
|
|
|
|
keywords='Debian service JSON',
|
|
|
|
author='Jan Dittberner',
|
|
|
|
author_email='jan@dittberner.info',
|
|
|
|
url='http://debian-stuff.dittberner.info/ddportfolioservice',
|
|
|
|
license='AGPL-3.0+',
|
2012-01-07 01:02:56 +01:00
|
|
|
install_requires=["Pylons>=0.10rc1", 'babel>=0.9.4'],
|
2009-01-20 22:39:05 +01:00
|
|
|
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': [
|
|
|
|
('**.py', 'python', None),
|
|
|
|
('templates/**.mako', 'mako', None),
|
|
|
|
('public/**', 'ignore', None)]},
|
2010-04-16 21:44:13 +02:00
|
|
|
zip_safe=False,
|
2009-01-20 22:39:05 +01:00
|
|
|
entry_points="""
|
|
|
|
[paste.app_factory]
|
|
|
|
main = ddportfolioservice.config.middleware:make_app
|
|
|
|
|
|
|
|
[paste.app_install]
|
|
|
|
main = pylons.util:PylonsInstaller
|
|
|
|
""",
|
|
|
|
)
|