This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
plone.formwidget.contenttree/setup.py

45 lines
1.3 KiB
Python

from setuptools import setup, find_packages
import os
version = '1.0.8.dev0'
setup(name='plone.formwidget.contenttree',
version=version,
description="AJAX selection widget for Plone",
long_description="\n".join([
open("README.txt").read(),
open(os.path.join("docs", "HISTORY.txt")).read(),
]),
# Get more strings from
# http://www.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Framework :: Plone",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='Plone selection widget AJAX',
author='Martin Aspeli',
author_email='optilude@gmail.com',
url='https://github.com/plone/plone.formwidget.contenttree',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['plone', 'plone.formwidget'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'z3c.formwidget.query',
'plone.formwidget.autocomplete >= 1.2.0',
'plone.z3cform >= 0.7.4',
],
extras_require={
'test': [
'plone.app.testing',
],
},
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""",
)