forked from cannatag/ldap3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
172 lines (151 loc) · 6.23 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
"""
"""
# Created on 2013.07.11
#
# Author: Giovanni Cannata
#
# Copyright 2013, 2014, 2015, 2016 Giovanni Cannata
#
# This file is part of ldap3.
#
# ldap3 is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# ldap3 is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with ldap3 in the COPYING and COPYING.LESSER files.
# If not, see <http://www.gnu.org/licenses/>.
import os
from setuptools import setup
from json import load
version_dict = load(open('_version.json', 'r'))
version = str(version_dict['version'])
author = str(version_dict['author'])
email = str(version_dict['email'])
license = str(version_dict['license'])
url = str(version_dict['url'])
description = str(version_dict['description'])
package_name = str(version_dict['package_name'])
package_folder = str(version_dict['package_folder'])
status = str(version_dict['status'])
long_description = str(open('README.rst').read())
packages=['ldap3',
'ldap3.abstract',
'ldap3.core',
'ldap3.operation',
'ldap3.protocol',
'ldap3.protocol.sasl',
'ldap3.protocol.schemas',
'ldap3.protocol.formatters',
'ldap3.strategy',
'ldap3.utils',
'ldap3.extend',
'ldap3.extend.novell',
'ldap3.extend.microsoft',
'ldap3.extend.standard']
setup_kwargs = {'packages': packages,
'package_dir': {'': package_folder}}
try:
from Cython.Build import cythonize
HAS_CYTHON = True
except ImportError:
HAS_CYTHON = False
if 'LDAP3_CYTHON_COMPILE' in os.environ and HAS_CYTHON is True:
import sys
import multiprocessing
import multiprocessing.pool
from setuptools import Extension
from distutils.command.build_py import build_py
from distutils.command.build_ext import build_ext
# Change to source's directory prior to running any command
try:
SETUP_DIRNAME = os.path.dirname(__file__)
except NameError:
# We're most likely being frozen and __file__ triggered this NameError
# Let's work around that
SETUP_DIRNAME = os.path.dirname(sys.argv[0])
if SETUP_DIRNAME != '':
os.chdir(SETUP_DIRNAME)
SETUP_DIRNAME = os.path.abspath(SETUP_DIRNAME)
def find_ext():
for package in ('ldap3',):
for root, _, files in os.walk(os.path.join(SETUP_DIRNAME, package)):
commonprefix = os.path.commonprefix([SETUP_DIRNAME, root])
for filename in files:
full = os.path.join(root, filename)
if not filename.endswith(('.py', '.c')):
continue
if filename in ('__init__.py',):
continue
relpath = os.path.join(root, filename).split(commonprefix)[-1][1:]
module = os.path.splitext(relpath)[0].replace(os.sep, '.')
yield Extension(module, [full])
def discover_packages():
modules = []
pkg_data = {}
pkg_dir = {}
for package in ('ldap3',):
for root, _, files in os.walk(os.path.join(SETUP_DIRNAME, package)):
if '__init__.py' not in files:
continue
pdir = os.path.relpath(root, SETUP_DIRNAME)
modname = pdir.replace(os.sep, '.')
modules.append(modname)
pkg_data.setdefault(modname, []).append('*.so')
pkg_dir[modname] = pdir
return modules, pkg_dir, pkg_data
ext_modules = cythonize(list(find_ext()), nthreads=multiprocessing.cpu_count())
class BuildPy(build_py):
def find_package_modules(self, package, package_dir):
modules = build_py.find_package_modules(self, package, package_dir)
for package, module, filename in modules:
if module not in ('__init__',):
# We only want __init__ python files
# All others will be built as extensions
continue
yield package, module, filename
class BuildExt(build_ext):
def run(self):
self.extensions = ext_modules
build_ext.run(self)
def build_extensions(self):
multiprocessing.pool.ThreadPool(
processes=multiprocessing.cpu_count()).map(
self.build_extension, self.extensions)
packages, package_dir, package_data = discover_packages()
setup_kwargs['packages'] = packages
setup_kwargs['package_dir'] = package_dir
setup_kwargs['package_data'] = package_data
setup_kwargs['cmdclass'] = {'build_py': BuildPy, 'build_ext': BuildExt}
setup_kwargs['ext_modules'] = ext_modules
setup_kwargs['zip_safe'] = False
setup(name=package_name,
version=version,
install_requires=[i.strip() for i in open('requirements.txt').readlines()],
license=license,
author=author,
author_email=email,
description=description,
long_description=long_description,
keywords='python3 python2 ldap',
url=url,
classifiers=['Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP'],
**setup_kwargs
)