-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
63 lines (59 loc) · 1.8 KB
/
Copy pathsetup.py
File metadata and controls
63 lines (59 loc) · 1.8 KB
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
"""Installer for the plone.patternslib package."""
from setuptools import setup
long_description = "\n\n".join(
[
open("README.md").read(),
open("CHANGES.md").read(),
]
)
setup(
name="plone.patternslib",
version="9.10.7.dev0",
description="An add-on to make Patternslib available to Plone.",
long_description=long_description,
long_description_content_type="text/markdown",
# See https://pypi.org/classifiers/
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Plone",
"Framework :: Plone :: 6.0",
"Framework :: Plone :: 6.1",
"Framework :: Plone :: 6.2",
"Framework :: Plone :: 6.3",
"Framework :: Plone :: Addon",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"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 :: 3.14",
"Operating System :: OS Independent",
],
keywords="Python Plone Patternslib",
author="Syslab.com",
author_email="devel@syslab.com",
url="https://github.com/plone/plone.patternslib",
license="GPL-2.0-only",
include_package_data=True,
zip_safe=False,
python_requires=">=3.9",
install_requires=[
"Products.CMFPlone",
"Products.GenericSetup",
"zope.interface",
],
extras_require={
"test": [
"plone.api",
"plone.app.testing",
"plone.base",
],
},
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""",
)