source: products/QGSkel/trunk/setup.py @ 1126

Last change on this file since 1126 was 1126, checked in by chervol, 15 years ago

added paster template registration and initial controller

  • Property svn:eol-style set to native
File size: 1.1 KB
Line 
1from setuptools import setup, find_packages
2import sys, os
3
4version = '0.0'
5
6setup(name='QGSkel',
7      version=version,
8      description="Zope skels by quintagroup",
9      long_description=open('README.txt').read() + "\n" +
10                         open('HISTORY.txt').read(),
11      classifiers=[
12         "Development Status :: 5 - Production/Stable",
13         "Framework :: Zope2",
14         "Framework :: Zope3",
15         "Intended Audience :: Developers",
16         "License :: OSI Approved :: MIT License",
17         "Programming Language :: Python",
18         "Topic :: Internet :: WWW/HTTP",
19         "Topic :: Internet :: WWW/HTTP :: Dynamic Content",
20         ],
21      keywords='',
22      author='Volodymyr Cherepanyak',
23      author_email='support at quintagroup.com',
24      url='http://quintagroup.com',
25      license='',
26      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
27      include_package_data=True,
28      zip_safe=False,
29      install_requires=[
30          # -*- Extra requirements: -*-
31      ],
32      entry_points="""
33      [paste.paster_create_template]
34      qgplone3_buildout = qgskel:QGPlone3Buildout
35      """,
36      )
Note: See TracBrowser for help on using the repository browser.