-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
69 lines (67 loc) · 2.02 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
from setuptools import setup, find_packages
import os
version = '3.0a1'
setup(name='il.sapl',
version=version,
description="",
long_description=open("README.txt").read() + "\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
# Get more strings from
# http://pypi.python.org/pypi?:action=list_classifiers
classifiers=[
"Programming Language :: Python",
],
keywords='',
author='',
author_email='Gustavo Lepri',
url='http://svn.plone.org/svn/collective/',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['il'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'Pillow',
'Products.SecureMailHost',
'Products.CMFActionIcons',
'Products.CMFCalendar',
'Products.CMFCore',
'Products.CMFDefault',
'Products.CMFFormController',
'Products.CMFTopic',
'Products.CMFUid',
'Products.DCWorkflow',
'Products.ExternalEditor',
'Products.GenericSetup',
'Products.ZMySQLDA',
'Products.AdvancedQuery',
'Products.TextIndexNG3==3.4.8',
'Products.ExtendedPathIndex',
'ZODB3',
'Zope2',
'z3c.autoinclude',
'pyoai',
'appy',
'uuid',
'zope.globalrequest==1.0',
'simplejson',
'five.grok == 1.3.2',
'five.formlib == 1.0.4',
'five.localsitemanager == 2.0.5',
'grokcore.annotation == 1.3',
'grokcore.component == 2.5',
'grokcore.formlib == 1.9',
'grokcore.layout == 1.5.1',
'grokcore.security == 1.6.1',
'grokcore.site == 1.6.1',
'grokcore.view == 2.7',
'grokcore.viewlet == 1.10.1',
'martian == 0.14',
'reportlab == 2.7',
'trml2pdf',
],
entry_points="""
# -*- Entry points: -*-
""",
)