equal
deleted
inserted
replaced
23 'docs') |
23 'docs') |
24 |
24 |
25 README = os.path.join(DOCS, 'README.txt') |
25 README = os.path.join(DOCS, 'README.txt') |
26 HISTORY = os.path.join(DOCS, 'HISTORY.txt') |
26 HISTORY = os.path.join(DOCS, 'HISTORY.txt') |
27 |
27 |
28 version = '0.1.4' |
28 version = '0.1.5' |
29 long_description = open(README).read() + '\n\n' + open(HISTORY).read() |
29 long_description = open(README).read() + '\n\n' + open(HISTORY).read() |
30 |
30 |
31 tests_require = [] |
31 tests_require = [] |
32 |
32 |
33 setup(name='pyams_i18n', |
33 setup(name='pyams_i18n', |
58 tests_require=tests_require, |
58 tests_require=tests_require, |
59 extras_require=dict(test=tests_require), |
59 extras_require=dict(test=tests_require), |
60 install_requires=[ |
60 install_requires=[ |
61 'setuptools', |
61 'setuptools', |
62 # -*- Extra requirements: -*- |
62 # -*- Extra requirements: -*- |
|
63 'chameleon', |
|
64 'fanstatic', |
|
65 'hypatia', |
63 'persistent', |
66 'persistent', |
64 'pyams_catalog', |
67 'pyams_catalog', |
65 'pyams_file', |
68 'pyams_file', |
|
69 'pyams_form', |
|
70 'pyams_i18n', |
|
71 'pyams_pagelet', |
|
72 'pyams_skin', |
66 'pyams_utils', |
73 'pyams_utils', |
|
74 'pyams_viewlet', |
67 'pyramid', |
75 'pyramid', |
|
76 'z3c.form', |
|
77 'z3c.pt', |
|
78 'ZODB', |
|
79 'zope.annotation', |
68 'zope.component', |
80 'zope.component', |
69 'zope.container', |
81 'zope.container', |
|
82 'zope.i18n', |
70 'zope.interface', |
83 'zope.interface', |
|
84 'zope.lifecycleevent', |
|
85 'zope.location', |
71 'zope.schema', |
86 'zope.schema', |
72 'zope.site', |
87 'zope.site', |
|
88 'zope.traversing', |
73 ], |
89 ], |
74 entry_points={ |
90 entry_points={ |
75 'fanstatic.libraries': [ |
91 'fanstatic.libraries': [ |
76 'pyams_i18n = pyams_i18n:library' |
92 'pyams_i18n = pyams_i18n:library' |
77 ] |
93 ] |