source: products/quintagroup.distrpoxy/trunk/setup.py @ 1552

Last change on this file since 1552 was 1082, checked in by koval, 15 years ago

added static wsgi application with folder listings

  • Property svn:eol-style set to native
File size: 1.3 KB
RevLine 
[1064]1from setuptools import setup, find_packages
2import os
3
4version = '1.0'
5
[1066]6setup(name='quintagroup.distproxy',
[1064]7      version=version,
8      description="quintgroup.distproxy is a smart mirror for dist.plone.org",
9      long_description=open("README.txt").read() + "\n" +
10                       open(os.path.join("docs", "HISTORY.txt")).read(),
11      # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
12      classifiers=[
13        "Programming Language :: Python",
14        "Topic :: Software Development :: Libraries :: Python Modules",
15        ],
16      keywords='',
17      author='Volodymyr Cherepanyak, Quintagroup',
18      author_email='<support at quintagroup.com>',
[1067]19      url='http://svn.quintagroup.com/products/quintagroup.distrpoxy',
[1064]20      license='GPL',
21      packages=find_packages(exclude=['ez_setup']),
22      namespace_packages=['quintagroup'],
23      include_package_data=True,
24      zip_safe=False,
25      install_requires=[
26          'setuptools',
[1067]27          'PasteScript',
28          'PasteDeploy',
[1064]29          # -*- Extra requirements: -*-
30      ],
[1066]31      entry_points={
32          'paste.app_factory': [
33              'main = quintagroup.distproxy.wsgi:app_factory',
[1082]34              'static = quintagroup.distproxy.wsgi:make_static',
[1066]35              ],
36          },
[1064]37      )
Note: See TracBrowser for help on using the repository browser.