forked from gocept/gocept.mochikit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (30 loc) · 907 Bytes
/
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
# Copyright (c) 2007 gocept gmbh & co. kg
# See also LICENSE.txt
from setuptools import setup, find_packages
setup(
name = 'gocept.mochikit',
version = "1.4.2.5+py3",
author = "Christian Zagrodnick",
author_email = "[email protected]",
description = "MochiKit integration into Zope 3",
long_description = open('README.txt').read(),
license = "ZPL 2.1",
url='http://pypi.python.org/pypi/gocept.mochikit',
packages = find_packages('src'),
package_dir = {'': 'src'},
include_package_data = True,
zip_safe = False,
namespace_packages = ['gocept'],
install_requires = [
'setuptools',
'zope.viewlet',
'zc.resourcelibrary',
],
extras_require = {
'test': ['zope.testing',
'zope.testbrowser',
'zope.app.testing',
'zope.app.zcmlfiles',
],
},
)