equal
deleted
inserted
replaced
20 'docs') |
20 'docs') |
21 |
21 |
22 README = os.path.join(DOCS, 'README.txt') |
22 README = os.path.join(DOCS, 'README.txt') |
23 HISTORY = os.path.join(DOCS, 'HISTORY.txt') |
23 HISTORY = os.path.join(DOCS, 'HISTORY.txt') |
24 |
24 |
25 version = '0.1.3' |
25 version = '0.1.4' |
26 long_description = open(README).read() + '\n\n' + open(HISTORY).read() |
26 long_description = open(README).read() + '\n\n' + open(HISTORY).read() |
27 |
27 |
28 tests_require = [] |
28 tests_require = [] |
29 |
29 |
30 setup(name='pyams_content', |
30 setup(name='pyams_content', |
55 tests_require=tests_require, |
55 tests_require=tests_require, |
56 extras_require=dict(test=tests_require), |
56 extras_require=dict(test=tests_require), |
57 install_requires=[ |
57 install_requires=[ |
58 'setuptools', |
58 'setuptools', |
59 # -*- Extra requirements: -*- |
59 # -*- Extra requirements: -*- |
|
60 'fanstatic', |
|
61 'hypatia', |
|
62 'persistent', |
60 'pyams_catalog', |
63 'pyams_catalog', |
61 'pyams_file', |
64 'pyams_file', |
62 'pyams_form', |
65 'pyams_form', |
63 'pyams_i18n', |
66 'pyams_i18n', |
64 'pyams_media', |
67 'pyams_mail', |
65 'pyams_pagelet', |
68 'pyams_pagelet', |
|
69 'pyams_portal', |
66 'pyams_security', |
70 'pyams_security', |
67 'pyams_sequence', |
71 'pyams_sequence', |
68 'pyams_skin', |
72 'pyams_skin', |
69 'pyams_template', |
73 'pyams_template', |
70 'pyams_thesaurus', |
74 'pyams_thesaurus', |
71 'pyams_utils', |
75 'pyams_utils', |
72 'pyams_viewlet', |
76 'pyams_viewlet', |
73 'pyams_workflow', |
77 'pyams_workflow', |
74 'pyams_zmi', |
78 'pyams_zmi', |
|
79 'pyramid', |
|
80 'pyramid_chameleon', |
|
81 'pyramid_mailer', |
|
82 'z3c.form', |
|
83 'z3c.table', |
|
84 'zope.annotation', |
75 'zope.component', |
85 'zope.component', |
|
86 'zope.container', |
|
87 'zope.contentprovider', |
|
88 'zope.copy', |
|
89 'zope.dublincore', |
76 'zope.interface', |
90 'zope.interface', |
|
91 'zope.intid', |
|
92 'zope.lifecycleevent', |
|
93 'zope.location', |
|
94 'zope.schema', |
|
95 'zope.site', |
|
96 'zope.traversing' |
77 ], |
97 ], |
78 entry_points={ |
98 entry_points={ |
79 'fanstatic.libraries': [ |
99 'fanstatic.libraries': [ |
80 'pyams_content = pyams_content.skin:library' |
100 'pyams_content = pyams_content.skin:library' |
81 ] |
101 ] |