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.2' |
28 version = '0.1.3' |
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 'pyams_viewlet' |
|
33 ] |
32 |
34 |
33 setup(name='pyams_pagelet', |
35 setup(name='pyams_pagelet', |
34 version=version, |
36 version=version, |
35 description="PyAMS pagelet interfaces and classes", |
37 description="PyAMS pagelet interfaces and classes", |
36 long_description=long_description, |
38 long_description=long_description, |
60 'setuptools', |
62 'setuptools', |
61 # -*- Extra requirements: -*- |
63 # -*- Extra requirements: -*- |
62 'pyams_template', |
64 'pyams_template', |
63 'pyams_utils', |
65 'pyams_utils', |
64 'pyramid', |
66 'pyramid', |
|
67 'pyramid_chameleon', |
65 'pyramid_zcml', |
68 'pyramid_zcml', |
|
69 'venusian', |
66 'zope.component', |
70 'zope.component', |
67 'zope.configuration', |
71 'zope.configuration', |
68 'zope.contentprovider', |
72 'zope.contentprovider', |
69 'zope.interface', |
73 'zope.interface', |
70 'zope.schema', |
74 'zope.schema', |