forked from plone/plone.app.contenttypes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
88 lines (79 loc) · 2.88 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
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
import os
version = '3.0.0.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.0",
"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.7",
"Programming Language :: Python :: 3.8",
],
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,
install_requires=[
'setuptools',
'Products.CMFPlone',
'plone.app.contentmenu',
'plone.app.event >= 2.0a4',
'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 [blobs] >= 4.2.0',
'plone.app.versioningbehavior',
'plone.app.vocabularies>4.1.2',
'plone.app.lockingbehavior',
'plone.behavior >= 1.3.0',
'pytz',
'plone.app.z3cform>=1.1.0.dev0',
'six',
'zope.deprecation',
],
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
],
'archetypes': [
'archetypes.schemaextender',
'Products.ATContentTypes',
'Products.contentmigration >= 2.1.8.dev0',
'plone.app.referenceablebehavior',
],
'atrefs': [
'plone.app.referenceablebehavior',
],
},
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
)