forked from collective/collective.documentviewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
68 lines (64 loc) · 2.21 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
from setuptools import setup, find_packages
import os
version = '6.0.3.dev0'
setup(name='collective.documentviewer',
version=version,
description="Document cloud's document viewer integration into plone.",
long_description="%s\n%s" % (
open("README.rst").read(),
open(os.path.join("docs", "HISTORY.txt")).read()
),
# Get more from https://pypi.org/classifiers/
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Plone",
"Framework :: Plone :: Addon",
"Framework :: Plone :: 5.0",
"Framework :: Plone :: 5.1",
"Framework :: Plone :: 5.2",
"Framework :: Plone",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
],
keywords='plone documentviewer pdf ocr doc viewer',
author='Nathan Van Gheem',
author_email='[email protected]',
url='https://github.com/collective/collective.documentviewer',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['collective'],
include_package_data=True,
zip_safe=False,
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*',
install_requires=[
'setuptools',
'plone.api',
'Products.CMFPlone',
'zope.browserresource',
'repoze.catalog>=0.9.0',
'plone.app.z3cform',
'collective.monkeypatcher',
'plone.app.contenttypes'
],
extras_require={
'test': [
'plone.api',
'plone.app.testing',
'plone.testing',
'plone.app.contenttypes',
'collective.celery[test]'
]
},
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
[celery_tasks]
documentviewer = collective.documentviewer.async_utils
"""
)