-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
49 lines (47 loc) · 1.69 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
from setuptools import setup, find_packages
version = '0.6.dev0'
setup(
name='collective.referencedatagridfield',
version=version,
description="Mix of Reference and DataGrid Fields",
long_description=open("README.rst").read() + "\n" +
open("CHANGES.rst").read(),
# Get more strings from
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Environment :: Web Environment",
"Framework :: Zope2",
"Framework :: Plone",
"Framework :: Plone :: 4.3",
"Programming Language :: Python",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: GNU General Public License (GPL)",
],
keywords='archetypes referencebrowser datagrid field widget relation',
author='Quintagroup',
author_email='support@quintagroup.com',
url='https://github.com/collective/collective.referencedatagridfield',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['collective'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'Products.DataGridField>=1.8a1',
'archetypes.referencebrowserwidget>=2.0a',
'plone.app.jquery>=1.7',
# 'Products.ATReferenceBrowserWidget>=3.0a',
# -*- Extra requirements: -*-
],
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
)