-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (49 loc) · 1.5 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
from setuptools import setup, find_packages
import os
version = '1.2dev'
install_requires=[
'grokcore.component',
'grokcore.view',
'megrok.pagetemplate >=0.7',
'setuptools',
'zope.cachedescriptors',
'zope.i18n',
'zope.interface',
'zope.publisher',
'zope.traversing',
]
tests_requires = install_requires + [
'zope.component',
'zope.app.wsgi',
'zope.testing',
'grokcore.view [test]'
],
setup(name='zeam.utils.batch',
version=version,
description="Generic Batch support for Zope",
long_description= "%s\n\n%s" % (
open(os.path.join("src", "zeam", "utils", "batch", "README.txt")).read(),
open(os.path.join("docs", "HISTORY.txt")).read()
),
classifiers=[
"Framework :: Zope2",
"Framework :: Zope3",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: BSD License",
],
keywords='batch zope',
author='Sylvain Viollon',
author_email='[email protected]',
url='http://github.com/thefunny42/Zeam-Utils-Batch',
license='BSD',
package_dir={'': 'src'},
packages=find_packages('src'),
namespace_packages=['zeam', 'zeam.utils'],
include_package_data=True,
zip_safe=False,
test_suite='zeam.utils.batch',
tests_require = tests_requires,
install_requires=install_requires,
extras_require = {'test': tests_requires},
)