forked from eea/eea.ldapadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (35 loc) · 914 Bytes
/
setup.py
File metadata and controls
36 lines (35 loc) · 914 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
''' be.ldapadmin installer '''
from setuptools import setup, find_packages
setup(name='be.ldapadmin',
version='0.2',
author='Eau de Web',
author_email='office@eaudeweb.ro',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'naaya.ldapdump',
'python-ldap',
'colander',
'BeautifulSoup',
'lxml',
'deform',
'phonenumbers',
'jellyfish==0.2.0',
'xlrd>=0.9.3',
'xlsxwriter>=2.0.0',
'unidecode',
'requests',
'sparql-client',
'python-dateutil',
'pyDNS',
'transliterate',
'validate-email>=edw.1.3.1',
],
entry_points={
'console_scripts':
[
'dump_ldap = be.ldapadmin.ldapdump:dump_ldap'
]
},
)