-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
80 lines (73 loc) · 2.04 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
# This should be only one line. If it must be multi-line, indent the second
# line onwards to keep the PKG-INFO file format intact.
"""Integration of Celery 4 with Zope 3.
"""
from setuptools import setup, find_packages
setup(
name='z3c.celery',
version='1.9.0.dev0',
install_requires=[
'celery >= 4.0.2',
'setuptools',
'transaction',
'zope.app.publication',
'zope.app.wsgi',
'zope.authentication',
'zope.component',
'zope.exceptions',
'zope.interface',
'zope.publisher',
'zope.security',
],
extras_require={
'test': [
'ZODB',
'pytest',
'pytest-celery',
'gocept.pytestlayer',
'plone.testing',
'redis',
'tblib',
'zope.principalregistry',
'zope.traversing',
],
'layer': [ # use this extra when using the EndToEndLayer
'plone.testing',
],
},
entry_points={
'console_scripts': [
# 'binary-name = z3c.celery.module:function'
],
},
author='gocept, Zeit Online',
author_email='zon-backend@zeit.de',
license='BSD',
url='https://github.com/ZeitOnline/z3c.celery',
keywords='celery Zope transaction',
classifiers="""\
Development Status :: 3 - Alpha
Framework :: Zope3
Intended Audience :: Developers
License :: OSI Approved
License :: OSI Approved :: BSD License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: Implementation :: CPython
Topic :: Database
Topic :: Software Development
Topic :: Software Development :: Testing
"""[:-1].split('\n'),
description=__doc__.strip(),
long_description='\n\n'.join(open(name).read() for name in (
'README.rst',
'CHANGES.rst',
)),
namespace_packages=['z3c'],
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
)