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_form', |
30 setup(name='pyams_form', |
55 extras_require=dict(test=tests_require), |
55 extras_require=dict(test=tests_require), |
56 install_requires=[ |
56 install_requires=[ |
57 'setuptools', |
57 'setuptools', |
58 # -*- Extra requirements: -*- |
58 # -*- Extra requirements: -*- |
59 'pyams_i18n', |
59 'pyams_i18n', |
|
60 'pyams_pagelet', |
60 'pyams_skin', |
61 'pyams_skin', |
61 'pyams_template', |
62 'pyams_template', |
62 'pyams_utils', |
63 'pyams_utils', |
|
64 'pyams_viewlet', |
63 'pyramid', |
65 'pyramid', |
|
66 'pyramid_chameleon', |
64 'pyramid_zope_request', |
67 'pyramid_zope_request', |
65 'z3c.form', |
68 'z3c.form', |
|
69 'z3c.table', |
66 'zope.component', |
70 'zope.component', |
67 'zope.interface', |
71 'zope.interface', |
|
72 'zope.lifecycleevent', |
|
73 'zope.location', |
|
74 'zope.pagetemplate', |
|
75 'zope.publisher', |
|
76 'zope.schema', |
68 ], |
77 ], |
69 entry_points=""" |
78 entry_points=""" |
70 # -*- Entry points: -*- |
79 # -*- Entry points: -*- |
71 """, |
80 """, |
72 ) |
81 ) |