This repository has been archived by the owner on Apr 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
57 lines (52 loc) · 1.53 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
from setuptools import setup, find_packages
import os
__version__ = '1.0.1.dev0'
def description():
join = lambda *paths: os.path.join('src', 'plone', 'z3cform', *paths)
return (
open('README.rst').read()
+ '\n'
+ open(join('fieldsets', 'README.rst')).read()
+ '\n'
+ open(join('crud', 'README.txt')).read()
+ '\n'
+ open('CHANGES.rst').read()
+ '\n'
)
setup(
name='plone.z3cform',
version=__version__,
description="plone.z3cform is a library that allows use of z3c.form "
"with Zope and the CMF.",
long_description=description(),
classifiers=[
"Framework :: Plone",
"Framework :: Plone :: 5.2",
"Framework :: Zope :: 4",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
keywords='zope cmf form widget',
author='Zope Foundation and Contributors',
author_email='zope-dev@zope.org',
url='https://pypi.org/project/plone.z3cform',
license='ZPL 2.1',
packages=find_packages('src'),
package_dir={'': 'src'},
namespace_packages=['plone'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'plone.batching',
'six',
'z3c.form',
'zope.i18n>=3.4',
'zope.browserpage',
'zope.component',
'Zope',
],
extras_require={'test': ['lxml', 'plone.testing[z2]']},
)