source: products/quintagroup.portlet.pfg/trunk/setup.py

Last change on this file was 3636, checked in by kroman0, 11 years ago

Added field to show form text

  • Property svn:eol-style set to native
File size: 1016 bytes
Line 
1from setuptools import setup, find_packages
2import os
3
4version = '1.1'
5
6setup(name='quintagroup.portlet.pfg',
7      version=version,
8      description="Render form created by PloneFormGen package.",
9      long_description=open("README.txt").read() + "\n" +
10      open(os.path.join("docs", "HISTORY.txt")).read(),
11      classifiers=[
12          "Programming Language :: Python",
13          "Topic :: Software Development :: Libraries :: Python Modules",
14      ],
15      keywords='portlet pfg',
16      author='Quintagroup',
17      author_email='support@quintagroup.com',
18      url='http://projects.quintagroup.com/products',
19      license='GPL',
20      packages=find_packages(exclude=['ez_setup']),
21      namespace_packages=['quintagroup', 'quintagroup.portlet'],
22      include_package_data=True,
23      zip_safe=False,
24      install_requires=[
25          'setuptools',
26          'Products.PloneFormGen',
27          # -*- Extra requirements: -*-
28      ],
29      entry_points="""
30      # -*- Entry points: -*-
31      """,
32      )
Note: See TracBrowser for help on using the repository browser.