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.0' |
25 version = '0.1.1' |
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_es', |
30 setup(name='pyams_content_es', |
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 'elasticsearch', |
|
61 'elasticsearch-dsl', |
|
62 'persistent', |
60 'pyams_content', |
63 'pyams_content', |
|
64 'pyams_form', |
|
65 'pyams_i18n', |
|
66 'pyams_pagelet', |
|
67 'pyams_sequence', |
|
68 'pyams_skin', |
|
69 'pyams_template', |
|
70 'pyams_utils', |
|
71 'pyams_viewlet', |
|
72 'pyams_workflow', |
|
73 'pyams_zmq', |
61 'pyramid', |
74 'pyramid', |
62 'pyramid_es', |
75 'pyramid_es', |
63 'zope.component', |
76 'zope.component', |
|
77 'zope.container', |
64 'zope.interface', |
78 'zope.interface', |
|
79 'zope.intid', |
|
80 'zope.lifecycleevent', |
|
81 'zope.schema', |
|
82 'zope.site' |
65 ], |
83 ], |
66 entry_points=""" |
84 entry_points=""" |
67 # -*- Entry points: -*- |
85 # -*- Entry points: -*- |
68 [console_scripts] |
86 [console_scripts] |
69 pyams_es_index = pyams_content_es.scripts.index:index_site |
87 pyams_es_index = pyams_content_es.scripts.index:index_site |