-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
60 lines (58 loc) · 1.83 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
long_description = (
open('README.rst').read() +
'\n' +
'Contributors\n' +
'============\n' +
'\n' +
open('CONTRIBUTORS.rst').read() +
'\n' +
open('CHANGES.rst').read() +
'\n')
setup(name='collective.autopublishing',
version='1.1b2.dev0',
description="Publishes and retracts on effective or expired dates.",
long_description=long_description,
# Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Framework :: Plone",
"Framework :: Plone :: 5.2",
"Framework :: Plone :: 6.0",
"Framework :: Plone :: Addon",
"Framework :: Zope2",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
],
keywords='plone workflow publishing',
author='Mustapha Benali',
author_email='[email protected]',
url='http://pypi.python.org/pypi/collective.autopublishing',
license='GPLv2+',
packages=find_packages(exclude=['ez_setup']),
namespace_packages = ['collective'],
include_package_data=True,
zip_safe=False,
extras_require=dict(
test=[
'plone.app.testing',
'plone.app.robotframework[debug]',
'interlude',
]
),
install_requires=[
'setuptools',
'plone.api',
'plone.app.registry>=1.2',
'plone.z3cform',
'collective.timedevents>=0.3',
'collective.complexrecordsproxy',
],
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""",
)