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.39.1' |
28 version = '0.1.40' |
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_skin', |
33 setup(name='pyams_skin', |
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 'fanstatic', |
63 'fanstatic', |
|
64 'myams', |
64 'pyams_file', |
65 'pyams_file', |
65 'pyams_utils >= 0.1.15', |
66 'pyams_utils >= 0.1.15', |
66 'pyams_viewlet', |
67 'pyams_viewlet', |
67 'pyramid', |
68 'pyramid', |
68 'z3c.form', |
69 'z3c.form', |
71 'zope.componentvocabulary', |
72 'zope.componentvocabulary', |
72 'zope.interface', |
73 'zope.interface', |
73 'zope.schema', |
74 'zope.schema', |
74 'zope.traversing' |
75 'zope.traversing' |
75 ], |
76 ], |
76 entry_points={ |
77 entry_points={}) |
77 'fanstatic.libraries': [ |
|
78 'pyams_skin = pyams_skin:library' |
|
79 ] |
|
80 }) |
|