forked from collective/collective.formcriteria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (51 loc) · 1.82 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
50
51
52
53
54
from setuptools import setup, find_packages
import os
version = '2.0.1'
tests_require = ['plone.app.testing',
'collective.monkeypatcher',
'zope.testbrowser>3.3']
setup(name='collective.formcriteria',
version=version,
description=(
"Add forms for user enterable search criteria to collections."),
long_description='\n'.join(
open(os.path.join(*path)).read() for path in [
("src", "collective", "formcriteria", "README.rst"),
("src", "collective", "formcriteria", "criteria",
"sort.rst"),
("src", "collective", "formcriteria", "csv",
"README.rst"),
("src", "collective", "formcriteria", "foldercontents",
"README.rst"),
("docs", "HISTORY.rst"), ("docs", "TODO.rst")]),
# Get more strings from
# http://www.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='',
author='Ross Patterson',
author_email='[email protected]',
url='http://pypi.python.org/pypi/collective.formcriteria',
license='GPL',
packages=find_packages('src', exclude=['ez_setup']),
package_dir={'': 'src'},
namespace_packages=['collective'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
# -*- Extra requirements: -*-
'Plone',
'plone.browserlayer',
],
tests_require=tests_require,
extras_require={'tests': tests_require,
'chameleon': 'five.pt>2.1.1'},
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
)