-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (52 loc) · 1.74 KB
/
setup.py
File metadata and controls
53 lines (52 loc) · 1.74 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
from setuptools import find_packages
from setuptools import setup
setup(
name='collective.taskqueue',
version='1.0.1.dev0',
description='Asyncore-based asynchronous task queue for Plone',
long_description=(open('README.rst').read() + '\n' +
open('CHANGES.txt').read()),
# Get more strings from
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Plone',
'Framework :: Plone :: 4.3',
'Framework :: Plone :: 5.0',
'Framework :: Plone :: 5.1',
'Framework :: Plone :: 5.2',
"Framework :: Plone :: Addon",
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='',
author='Asko Soukka',
author_email='asko.soukka@iki.fi',
url='https://github.com/collective/collective.taskqueue/',
license='GPL',
packages=find_packages('src', exclude=['ez_setup']),
package_dir={'': 'src'},
namespace_packages=['collective'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'six',
'Zope2',
'five.globalrequest',
],
extras_require={
'test': ['plone.app.testing', 'plone.app.robotframework>=0.7.0rc4'],
'redis': ['redis>=2.4.10', 'msgpack-python']
},
entry_points='''
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
'''
)