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

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

typo fixes

  • Property svn:eol-style set to native
File size: 1.1 KB
RevLine 
[1125]1from setuptools import setup, find_packages
2import sys, os
3
[1132]4version = '0.1'
[1125]5
6setup(name='QGSkel',
7      version=version,
8      description="Zope skels by quintagroup",
[1126]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         ],
[1125]21      keywords='',
22      author='Volodymyr Cherepanyak',
[1126]23      author_email='support at quintagroup.com',
[1125]24      url='http://quintagroup.com',
[1126]25      license='',
[1125]26      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
27      include_package_data=True,
28      zip_safe=False,
29      install_requires=[
[1132]30        "PasteScript",
31        "Cheetah>1.0",
[1125]32      ],
33      entry_points="""
[1126]34      [paste.paster_create_template]
35      qgplone3_buildout = qgskel:QGPlone3Buildout
[1125]36      """,
37      )
Note: See TracBrowser for help on using the repository browser.