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
Line 
1from setuptools import setup, find_packages
2import sys, os
3
4version = '0.1'
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        "PasteScript",
31        "Cheetah>1.0",
32      ],
33      entry_points="""
34      [paste.paster_create_template]
35      qgplone3_buildout = qgskel:QGPlone3Buildout
36      """,
37      )
Note: See TracBrowser for help on using the repository browser.