-
Notifications
You must be signed in to change notification settings - Fork 48
/
setup.py
94 lines (85 loc) · 2.96 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
from setuptools import find_packages
from setuptools import setup
import os
version = "4.0.2.dev0"
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
long_description = read("README.rst") + "\n\n" + read("CHANGES.rst")
setup(
name="plone.app.contenttypes",
version=version,
description="Default content types for Plone based on Dexterity",
long_description=long_description,
# Get more strings from https://pypi.org/classifiers/
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Plone",
"Framework :: Plone :: 6.1",
"Framework :: Plone :: Core",
"Framework :: Zope :: 5",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
keywords="plone content types dexterity",
author="Plone Foundation",
author_email="[email protected]",
url="https://github.com/plone/plone.app.contenttypes",
license="GPL",
packages=find_packages(),
namespace_packages=["plone", "plone.app"],
include_package_data=True,
zip_safe=False,
python_requires=">=3.10",
install_requires=[
"setuptools",
"plone.app.contentmenu",
"plone.app.dexterity >= 2.0.7", # has a fix for INameFromFilename
"plone.app.linkintegrity",
"plone.app.querystring >= 1.2.2", # custom_query support
"plone.dexterity >= 2.2.1", # behaviors can provide primaryfields
"plone.app.relationfield",
"plone.namedfile >= 4.2.0",
"plone.app.versioningbehavior",
"plone.app.vocabularies > 4.1.2",
"plone.app.lockingbehavior",
"plone.behavior >= 1.3.0",
"plone.app.z3cform>=1.1.0",
"plone.base",
"Products.BTreeFolder2",
"Products.GenericSetup",
"Products.MimetypesRegistry",
"Products.PortalTransforms",
"Products.statusmessages",
"plone.app.layout",
"plone.app.textfield",
"plone.app.uuid",
"plone.autoform",
"plone.event",
"plone.folder",
"plone.indexer",
"plone.memoize",
"plone.portlets",
"plone.registry",
"plone.rfc822",
"plone.supermodel",
"plone.z3cform",
"z3c.form",
"Zope",
],
extras_require={
"test": [
"lxml",
"plone.app.robotframework [debug] > 0.9.8", # create image and file content for Image, File and News Item if not given. # noqa
"plone.app.testing [robot] >= 4.2.4", # we need ROBOT_TEST_LEVEL
"plone.testing",
"plone.browserlayer",
"plone.uuid",
"robotsuite",
],
},
)