-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
60 lines (56 loc) · 1.81 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
from setuptools import setup, find_packages
import os
version = "3.0.4.dev0"
tests_require = [
"plone.app.testing",
"plone.testing>=5.0.0",
"plone.app.contenttypes",
"plone.app.robotframework[debug]",
]
setup(
name="collective.limitfilesizepanel",
version=version,
description="Configure files and images size limit through Plone control panel",
long_description=open("README.rst").read()
+ "\n"
+ open(os.path.join("docs", "HISTORY.rst")).read(),
# Get more strings from
# http://pypi.python.org/pypi?:action=list_classifiers
classifiers=[
"Environment :: Web Environment",
"Development Status :: 5 - Production/Stable",
"Framework :: Plone",
"Framework :: Plone :: Addon",
"Framework :: Plone :: 5.2",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
],
keywords="plone plonegov limit filesize validation",
author="RedTurtle Technology",
author_email="sviluppoplone@redturtle.it",
url="http://plone.org/products/collective.limitfilesizepanel",
license="GPL version 2",
python_requires=">=3.7",
packages=find_packages(exclude=["ez_setup"]),
namespace_packages=["collective"],
include_package_data=True,
zip_safe=False,
tests_require=tests_require,
extras_require=dict(test=tests_require),
install_requires=[
"setuptools",
"plone.api",
"plone.app.registry",
"collective.monkeypatcher>=1.0",
"plone.api",
"z3c.unconfigure",
"collective.z3cform.jsonwidget>=1.1.2",
],
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
)