-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
setup.py
96 lines (89 loc) · 3.84 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
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
version = "6.3.5.dev0"
long_description = "\n\n".join(
[
open("README.rst").read(),
open("CONTRIBUTORS.rst").read(),
open("CHANGES.rst").read(),
]
)
setup(
name="bobtemplates.plone",
version=version,
description="Templates for Plone projects.",
long_description=long_description,
classifiers=[
"Environment :: Console",
"Framework :: Plone",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Development Status :: 5 - Production/Stable",
"Framework :: Plone",
"Framework :: Plone :: 6.0",
"Topic :: Software Development :: Code Generators",
"Topic :: Utilities",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
],
keywords="web plone zope skeleton project",
author="Plone Foundation",
author_email="[email protected]",
url="https://github.com/plone/bobtemplates.plone/",
project_urls={
"PyPI": "https://pypi.python.org/pypi/bobtemplates.plone",
"Documentation": "https://bobtemplatesplone.readthedocs.io/en/latest/",
"Source": "https://github.com/plone/bobtemplates.plone/",
"Tracker": "https://github.com/plone/bobtemplates.plone/issues",
},
license="GPL version 2",
packages=find_packages(exclude=["ez_setup"]),
namespace_packages=["bobtemplates"],
include_package_data=True,
zip_safe=False,
python_requires=">=3.8",
install_requires=[
"setuptools",
"mr.bob",
"lxml",
"case-conversion",
"colorama",
"tox",
"isort",
"black",
],
setup_requires=[],
tests_require=[],
extras_require={},
entry_points={
"mrbob_templates": [
"plone_addon = bobtemplates.plone.bobregistry:plone_addon",
"plone_behavior = bobtemplates.plone.bobregistry:plone_behavior",
"plone_buildout = bobtemplates.plone.bobregistry:plone_buildout",
"plone_content_type = bobtemplates.plone.bobregistry:plone_content_type",
"plone_indexer = bobtemplates.plone.bobregistry:plone_indexer",
"plone_mockup_pattern = bobtemplates.plone.bobregistry:plone_mockup_pattern",
"plone_portlet = bobtemplates.plone.bobregistry:plone_portlet",
"plone_restapi_service = bobtemplates.plone.bobregistry:plone_restapi_service", # NOQA E501
"plone_svelte_app = bobtemplates.plone.bobregistry:plone_svelte_app",
"plone_subscriber = bobtemplates.plone.bobregistry:plone_subscriber",
"plone_theme = bobtemplates.plone.bobregistry:plone_theme",
"plone_theme_barceloneta = bobtemplates.plone.bobregistry:plone_theme_barceloneta", # NOQA E501
"plone_theme_basic = bobtemplates.plone.bobregistry:plone_theme_basic", # NOQA E501
"plone_upgrade_step = bobtemplates.plone.bobregistry:plone_upgrade_step",
"plone_view = bobtemplates.plone.bobregistry:plone_view",
"plone_viewlet = bobtemplates.plone.bobregistry:plone_viewlet",
"plone_vocabulary = bobtemplates.plone.bobregistry:plone_vocabulary",
"plone_controlpanel = bobtemplates.plone.bobregistry:plone_controlpanel",
"plone_form = bobtemplates.plone.bobregistry:plone_form",
"plone_site_initialization = bobtemplates.plone.bobregistry:plone_site_initialization",
]
},
)