forked from krietvel/mockldap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·45 lines (40 loc) · 1.31 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
44
45
#!/usr/bin/env python3
from setuptools import setup
def readall(path):
with open(path) as fp:
return fp.read()
setup(
name='mockldap',
version='0.4.0+liacs',
description="A simple mock implementation of python-ldap.",
url='https://github.com/psagers/mockldap',
project_urls={
'Documentation': 'https://mockldap.readthedocs.io/',
},
author='Peter Sagerson',
author_email='psagers@ignorare.net',
license='CC0-1.0',
packages=['mockldap'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
'Programming Language :: Python :: 3',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP',
],
keywords=['mock', 'ldap'],
install_requires=[
'funcparserlib == 0.3.6',
'mock; python_version < "3.0"',
'python-ldap >= 3.0',
],
setup_requires=[
'setuptools >= 0.6c11',
],
test_suite='tests',
)