source: products/quintagroup.referencedatagridfield/trunk/setup.py @ 3565

Last change on this file since 3565 was 2361, checked in by mylan, 14 years ago

Updated keywords in package metadata

  • Property svn:eol-style set to native
File size: 1.4 KB
Line 
1from setuptools import setup, find_packages
2import os
3
4version = '0.2'
5
6setup(name='quintagroup.referencedatagridfield',
7      version=version,
8      description="Mix of Reference and DataGrid fields",
9      long_description=open("README.txt").read() + "\n" +
10                       open(os.path.join("docs", "HISTORY.txt")).read(),
11      # Get more strings from
12      # http://pypi.python.org/pypi?%3Aaction=list_classifiers
13      classifiers=[
14        "Framework :: Plone",
15        "Programming Language :: Python",
16        ],
17      keywords='archetypes referencebrowser datagrid field widget relation',
18      author='Quintagroup [Andriy Mylenkyi]',
19      author_email='talk@quintagroup.com',
20      url='http://svn.quintagroup.com/products/quintagroup.referencedatagridfield',
21      license='GPL',
22      packages=find_packages(exclude=['ez_setup']),
23      namespace_packages=['quintagroup'],
24      include_package_data=True,
25      zip_safe=False,
26      install_requires=[
27          'setuptools',
28          'Products.DataGridField>=1.8a1',
29          'archetypes.referencebrowserwidget>=2.0a',
30          # 'Products.ATReferenceBrowserWidget>=3.0a',
31          # -*- Extra requirements: -*-
32      ],
33      entry_points="""
34      # -*- Entry points: -*-
35
36      [z3c.autoinclude.plugin]
37      target = plone
38      """,
39      # setup_requires=["PasteScript"],
40      # paster_plugins=["ZopeSkel"],
41      )
Note: See TracBrowser for help on using the repository browser.