debianmemberportfolio/setup.py

40 lines
1.4 KiB
Python
Raw Normal View History

2009-01-20 15:33:18 +01:00
from setuptools import setup, find_packages
import sys, os
version = '0.1'
setup(name='ddportfolioservice',
version=version,
description="service to create DDPortfolio 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
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',
'License :: DFSG approved',
2009-01-20 15:57:08 +01:00
'License :: OSI approved :: ' +
2009-01-20 15:33:18 +01:00
'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='AGPLv3',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
package_data= {
'ddportfolioservice' : ['*.ini'],
},
2009-01-20 15:33:18 +01:00
install_requires=[
# -*- Extra requirements: -*-
'Paste',
'PasteDeploy',
2009-01-20 20:50:17 +01:00
'simplejson',
'formencode'
2009-01-20 15:33:18 +01:00
],
)