-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
61 lines (59 loc) · 1.84 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
55
56
57
58
59
60
61
#!python
from setuptools import find_packages
from setuptools import setup
setup(
name='z3c.formwidget.query',
version='2.0.1.dev0',
author="Zope Community",
author_email="[email protected]",
description="A source query widget for z3c.form.",
long_description=(
open('README.rst').read() + '\n\n' +
open('CHANGES.rst').read()
),
license="ZPL 2.1",
keywords="zope zope3 z3c.form",
url='https://github.com/zopefoundation/z3c.formwidget.query',
zip_safe=False,
packages=find_packages('src'),
include_package_data=True,
package_dir={'': 'src'},
namespace_packages=['z3c', 'z3c.formwidget'],
python_requires='>=3.7',
extras_require=dict(
test=[
'lxml',
'z3c.form [test]',
'zope.testing',
'zope.testrunner',
]),
install_requires=[
'setuptools',
'z3c.form>=3.2.10',
'zope.interface',
'zope.schema',
'zope.component',
'zope.i18nmessageid',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Zope :: 3',
'Intended Audience :: Developers',
'License :: OSI Approved :: Zope Public License',
'License :: OSI Approved :: GNU Library or Lesser General Public'
' License (LGPL)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development :: Libraries :: Python Modules',
],
entry_points='''
[z3c.autoinclude.plugin]
target = plone
''',
)