forked from MrTango/netsight.async
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
67 lines (58 loc) · 1.71 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
import sys
from setuptools import setup, find_packages
version = '1.1.1'
requirements = [
'setuptools',
'zope.component>=3.4.0',
'zope.i18n>=3.4.0',
'zope.i18nmessageid>=3.4.0',
'Zope2>=2.8.0',
'zope.publisher'
]
test_requirements = [
'mock',
'Products.PloneTestCase'
]
if sys.version_info[:3] < (2,6,0):
requirements.append('simplejson')
setup(
# Metadata
name='netsight.async',
version=version,
description="Provides a base view for running asynchronous "
"processes from Zope.",
long_description='\n\n'.join([open(f).read() for f in [
"README.rst",
"HISTORY.rst",
'LICENSE.rst',
]]),
classifiers=[
"Framework :: Plone",
"Framework :: Zope2",
"Programming Language :: Python",
],
keywords='Plone Zope Asynchronous Fork Process Task Browser View',
author='Netsight Internet Solutions Limited',
author_email='[email protected]',
maintainer='Richard Mitchell',
maintainer_email='[email protected]',
url='http://www.netsight.co.uk',
license='Apache 2.0',
# Distribution / build data
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['netsight'],
include_package_data=True,
zip_safe=False,
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
# Dependencies
install_requires=requirements,
setup_requires=[],
tests_require=test_requirements,
extras_require={
'test': test_requirements
},
)