This repository was archived by the owner on Dec 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·51 lines (46 loc) · 1.27 KB
/
setup.py
File metadata and controls
executable file
·51 lines (46 loc) · 1.27 KB
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
46
47
48
49
50
51
import codecs
from distutils.core import setup
def read(fname):
'''
Read a file from the directory where setup.py resides
'''
with codecs.open(fname, encoding='utf-8') as rfh:
return rfh.read()
try:
description = read('README.txt')
except:
description = read('README.md')
setup(
name='python-ldap-test',
version='0.3.1',
author='Adrian Gruntkowski',
author_email='[email protected]',
packages=['ldap_test', 'ldap_test.test'],
url='https://github.com/zoldar/python-ldap-test/',
license='LICENSE.txt',
description=('Tool for testing code speaking with LDAP server. Allows to easily'
' configure and run an embedded, in-memory LDAP server. Uses'
' UnboundID LDAP SDK through Py4J.'),
keywords=['testing', 'tests', 'test', 'ldap'],
long_description=description,
install_requires=[
"py4j >= 0.10.2.1",
],
package_data={
'': ['*.txt'],
'ldap_test': ['*.jar'],
},
options={
'bdist_rpm': {
'build_requires':[
'python',
'python-setuptools',
'py4j',
],
'requires':[
'python',
'py4j',
],
},
},
)