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.1' |
25 version = '0.1.2' |
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_portal', |
30 setup(name='pyams_portal', |
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', |
60 'fanstatic', |
|
61 'persistent', |
|
62 'pyams_form', |
|
63 'pyams_pagelet', |
|
64 'pyams_security', |
|
65 'pyams_skin', |
|
66 'pyams_template', |
|
67 'pyams_utils', |
|
68 'pyams_viewlet', |
|
69 'pyams_zmi', |
61 'pyramid', |
70 'pyramid', |
|
71 'transaction', |
|
72 'z3c.form', |
|
73 'zope.annotation', |
62 'zope.component', |
74 'zope.component', |
|
75 'zope.container', |
|
76 'zope.copy', |
63 'zope.interface', |
77 'zope.interface', |
|
78 'zope.lifecycleevent', |
|
79 'zope.location', |
|
80 'zope.schema', |
|
81 'zope.traversing', |
64 ], |
82 ], |
65 entry_points={ |
83 entry_points={ |
66 'fanstatic.libraries': [ |
84 'fanstatic.libraries': [ |
67 'pyams_portal = pyams_portal:library' |
85 'pyams_portal = pyams_portal:library' |
68 ] |
86 ] |