-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
43 lines (41 loc) · 1.3 KB
/
setup.py
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
37
38
39
40
41
42
43
from setuptools import setup
# import version from version.py so it's only specified in one spot
exec(open('ezldap/version.py').read())
setup(
name='ezldap',
version=__version__,
description='Scripts and Python bindings for easy LDAP operations.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/jstaf/ezldap',
author='Jeff Stafford',
author_email='[email protected]',
license='BSD3',
packages=['ezldap'],
scripts=['bin/ezldap'],
include_package_data=True,
zip_safe=False,
install_requires=[
'PyYAML',
'ldap3'
],
setup_requires=['pytest-runner'],
tests_require=[
'pandas',
'pytest',
'pytest-docker',
'pytest-cov',
'docker-compose'
],
classifiers=[
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only',
'Operating System :: POSIX :: Linux',
'Operating System :: Unix',
'Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP',
'License :: OSI Approved :: BSD License',
'Development Status :: 4 - Beta'
]
)