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.2' |
25 version = '0.1.3' |
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_ldap', |
30 setup(name='pyams_ldap', |
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 'Beaker', |
|
61 'ldap3', |
|
62 'pyams_form', |
|
63 'pyams_mail', |
60 'pyams_pagelet', |
64 'pyams_pagelet', |
61 'pyams_security', |
65 'pyams_security', |
62 'pyams_skin', |
66 'pyams_skin', |
|
67 'pyams_template', |
63 'pyams_utils', |
68 'pyams_utils', |
64 'pyams_viewlet', |
69 'pyams_viewlet', |
65 'pyramid', |
70 'pyramid', |
66 'python3-ldap', |
71 'z3c.form', |
|
72 'z3c.table', |
67 'zope.component', |
73 'zope.component', |
|
74 'zope.container', |
68 'zope.interface', |
75 'zope.interface', |
|
76 'zope.intid', |
|
77 'zope.schema', |
69 ], |
78 ], |
70 entry_points=""" |
79 entry_points=""" |
71 # -*- Entry points: -*- |
80 # -*- Entry points: -*- |
72 """, |
81 """, |
73 ) |
82 ) |