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_file', |
30 setup(name='pyams_file', |
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 'pillow', |
59 'pillow', |
|
60 'pyams_form', |
|
61 'pyams_pagelet', |
|
62 'pyams_skin', |
|
63 'pyams_template', |
|
64 'pyams_utils', |
|
65 'pyams_viewlet', |
60 'pyramid', |
66 'pyramid', |
61 'python-magic', |
67 'python-magic', |
|
68 'ZODB', |
|
69 'zope.annotation', |
62 'zope.component', |
70 'zope.component', |
|
71 'zope.container', |
63 'zope.copy', |
72 'zope.copy', |
|
73 'zope.dublincore', |
64 'zope.interface', |
74 'zope.interface', |
|
75 'zope.lifecycleevent', |
|
76 'zope.location', |
|
77 'zope.schema', |
|
78 'zope.traversing' |
65 ], |
79 ], |
66 entry_points=""" |
80 entry_points=""" |
67 # -*- Entry points: -*- |
81 # -*- Entry points: -*- |
68 """, |
82 """, |
69 ) |
83 ) |