-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
99 lines (95 loc) · 2.9 KB
/
setup.py
File metadata and controls
99 lines (95 loc) · 2.9 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
from setuptools import setup, find_packages
def read(*rnames):
with open(os.path.join(os.path.dirname(__file__), *rnames)) as file:
return file.read()
setup(name='zopache.webapp',
version='0.1',
description='Zopache Web Application',
long_description=(
read('README.txt')
),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Zope Public License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: Implementation :: CPython',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Framework :: Zope3'],
keywords='zope bluebream ttw',
author='Christopher Lozinski',
author_email='[email protected]',
url='http://zopache.com',
license='ZPL 2.1',
package_dir={'': 'src'},
packages=find_packages('src'),
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'z3c.pt',
'z3c.template',
'z3c.testsetup',
'zopache.pagetemplate',
'zopache.pythonscript',
'zope.app.apidoc',
'zope.app.appsetup',
'zope.app.basicskin',
'zope.app.broken',
'zope.app.catalog',
'zope.app.content',
'zope.app.component',
'zope.app.container',
'zope.app.debug',
'zope.app.dependable',
'zope.app.error',
'zope.app.file',
'zope.app.folder',
'zope.app.form',
'zope.app.generations',
'zope.app.i18n',
'zope.app.intid',
'zope.app.locales',
'zope.app.pagetemplate',
'zope.app.principalannotation',
'zope.app.publisher',
'zope.app.rotterdam',
'zope.app.schema',
'zope.app.security',
'zope.app.session',
'zope.app.testing',
'zope.app.wsgi',
'zope.app.zcmlfiles',
'zope.app.zopeappgenerations',
'zope.annotation',
'zope.browserresource',
'zope.catalog',
'zope.component',
'zope.contentprovider',
'zope.fanstatic',
'zope.formlib',
'zope.i18n',
'zope.intid',
'zope.keyreference',
'zope.login',
'zope.publisher',
'zope.securitypolicy',
'zope.sendmail',
'zope.testbrowser',
'ztfy.blog',
'ztfy.scheduler',
'ztfy.zmi',
],
entry_points = """
[paste.app_factory]
main = zopache.webapp.startup:application_factory
[paste.global_paster_command]
shell = zopache.webapp.debug:Shell
""",
)