-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathsetup.py
139 lines (135 loc) · 4.09 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
# -*- coding:utf-8 -*-
from setuptools import find_packages
from setuptools import setup
version = "3.0.1.dev0"
description = "A sane, working, editor-friendly way of creating front pages and other composite pages. Working now, for mere mortals."
long_description = "\n\n".join(
[
open("README.rst").read(),
open("CONTRIBUTORS.rst").read(),
open("CHANGES.rst").read(),
]
)
setup(
name="collective.cover",
version=version,
description=description,
long_description=long_description,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Plone",
"Framework :: Plone :: 5.2",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Programming Language :: JavaScript",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Office/Business :: News/Diary",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords="plone cover javascript dexterity",
author="Carlos de la Guardia et al.",
author_email="[email protected]",
url="https://github.com/collective/collective.cover",
project_urls={
"PyPI": "https://pypi.python.org/pypi/collective.cover",
"Source": "https://github.com/collective/collective.cover",
"Tracker": "https://github.com/collective/collective.cover/issues",
},
license="GPLv2",
packages=find_packages("src"),
package_dir={"": "src"},
namespace_packages=["collective"],
include_package_data=True,
zip_safe=False,
python_requires=">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*",
install_requires=[
"AccessControl",
"Acquisition",
"collective.js.bootstrap",
"collective.js.galleria",
"collective.js.jqueryui",
"Missing",
"persistent",
"plone.api",
"plone.app.blocks",
"plone.app.contentmenu",
"plone.app.dexterity",
"plone.app.iterate",
"plone.app.jquerytools",
"plone.app.layout",
"plone.app.linkintegrity",
"plone.app.lockingbehavior",
"plone.app.registry",
"plone.app.textfield",
"plone.app.tiles",
"plone.app.uuid",
"plone.app.vocabularies",
"plone.autoform",
"plone.behavior",
"plone.dexterity",
"plone.i18n",
"plone.indexer",
"plone.locking",
"plone.memoize",
"plone.namedfile",
"plone.registry",
"plone.rfc822",
"plone.scale",
"plone.supermodel",
"plone.tiles",
"plone.uuid",
"plone.z3cform",
"Products.CMFCore",
"Products.CMFPlone >=5.2",
"Products.GenericSetup",
"Products.MimetypesRegistry",
"Products.ZCatalog",
"setuptools",
"six",
"z3c.caching",
"z3c.form",
"z3c.relationfield",
"zExceptions",
"ZODB",
"Zope",
"zope.annotation",
"zope.browserpage",
"zope.component",
"zope.container",
"zope.event",
"zope.i18nmessageid",
"zope.interface",
"zope.intid",
"zope.lifecycleevent",
"zope.publisher",
"zope.schema",
"zope.traversing",
],
extras_require={
"relations": [
"plone.app.dexterity [relations]",
],
"test": [
"lxml",
"mock",
"plone.api",
"plone.app.robotframework",
"plone.app.testing [robot]",
"plone.browserlayer",
"plone.cachepurging",
"plone.testing",
"robotsuite",
],
},
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""",
)