~ubuntu-branches/ubuntu/hardy/pastedeploy/hardy

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Bazaar Package Importer
  • Author(s): Piotr Ozarowski
  • Date: 2006-05-14 03:27:56 UTC
  • Revision ID: james.westby@ubuntu.com-20060514032756-qqd7u23ijat2ccbf
Tags: upstream-0.5
ImportĀ upstreamĀ versionĀ 0.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
from setuptools import setup, find_packages
 
2
 
 
3
version = '0.5'
 
4
 
 
5
setup(
 
6
    name="PasteDeploy",
 
7
    version=version,
 
8
    description="Load, configure, and compose WSGI applications and servers",
 
9
    long_description="""\
 
10
This tool provides code to load WSGI applications and servers from
 
11
URIs; these URIs can refer to Python Eggs for INI-style configuration
 
12
files.  `Paste Script <http://pythonpaste.org/script>`_ provides
 
13
commands to serve applications based on this configuration file.
 
14
 
 
15
The latest version is available in a `Subversion repository
 
16
<http://svn.pythonpaste.org/Paste/Deploy/trunk#egg=PasteDeploy-dev>`_.
 
17
 
 
18
For the latest changes see the `news file
 
19
<http://pythonpaste.org/deploy/news.html>`_.
 
20
""",
 
21
    classifiers=["Development Status :: 4 - Beta",
 
22
                 "Intended Audience :: Developers",
 
23
                 "License :: OSI Approved :: Python Software Foundation License",
 
24
                 "Programming Language :: Python",
 
25
                 "Topic :: Internet :: WWW/HTTP",
 
26
                 "Topic :: Internet :: WWW/HTTP :: Dynamic Content",
 
27
                 "Topic :: Software Development :: Libraries :: Python Modules",
 
28
                 ],
 
29
    keywords='web wsgi application server',
 
30
    author="Ian Bicking",
 
31
    author_email="ianb@colorstudy.com",
 
32
    url="http://pythonpaste.org/deploy/",
 
33
    namespace_packages=['paste'],
 
34
    packages=find_packages(exclude='tests'),
 
35
    package_data={
 
36
      'paste.deploy': ['paster_templates/paste_deploy/docs/*_tmpl',
 
37
                       'paster_templates/paste_deploy/docs/*.txt'],
 
38
      },
 
39
    zip_safe=False,
 
40
    extras_require={
 
41
      'Config': [],
 
42
      'Paste': ['Paste'],
 
43
      },
 
44
    entry_points="""
 
45
    [paste.filter_app_factory]
 
46
    config = paste.deploy.config:make_config_filter [Config]
 
47
 
 
48
    [paste.paster_create_template]
 
49
    paste_deploy=paste.deploy.paster_templates:PasteDeploy
 
50
    """,
 
51
    )