-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
54 lines (52 loc) · 1.78 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
setup(
name='five.formlib',
version='5.1.dev0',
url='https://github.com/zopefoundation/five.formlib',
license='ZPL 2.1',
description='zope.formlib integration for Zope.',
author='Zope Foundation',
author_email='[email protected]',
long_description=(open("README.rst").read() + "\n" +
open("CHANGES.rst").read()),
classifiers=[
"Development Status :: 6 - Mature",
"Environment :: Web Environment",
"Framework :: Zope :: 5",
"Intended Audience :: Developers",
"License :: OSI Approved :: Zope Public License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Software Development :: Libraries :: Application Frameworks",
],
keywords='zope zope5 five formlib',
include_package_data=True,
python_requires='>=3.9',
install_requires=[
'setuptools',
'transaction',
'zope.app.form',
'zope.browser',
'zope.browsermenu',
'zope.component',
'zope.event',
'zope.formlib>=4.4',
'zope.i18nmessageid',
'zope.interface',
'zope.lifecycleevent',
'zope.location',
'zope.publisher',
'zope.schema',
'ExtensionClass',
'Zope >= 4',
],
zip_safe=False,
)