forked from cannatag/ldap3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
108 lines (97 loc) · 3.88 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
"""
"""
# Created on 2013.07.11
#
# Author: Giovanni Cannata
#
# Copyright 2013 - 2018 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
import glob
import shutil
from json import load
from distutils.command.clean import clean
from distutils import log
from setuptools import setup
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}}
class Clean(clean):
def run(self):
clean.run(self)
# Let's clean compiled *.py[c,o] *.c *.so
for subdir in ('ldap3',):
root = os.path.join(os.path.dirname(__file__), subdir)
for dirname, dirs, _ in os.walk(root):
for to_remove_filename in glob.glob('{0}/*.py[ocx]'.format(dirname)):
os.remove(to_remove_filename)
for to_remove_filename in glob.glob('{0}/*.c'.format(dirname)):
os.remove(to_remove_filename)
for to_remove_filename in glob.glob('{0}/*.so'.format(dirname)):
os.remove(to_remove_filename)
for dir_ in dirs:
if dir_ == '__pycache__':
shutil.rmtree(os.path.join(dirname, dir_))
setup_kwargs['cmdclass'] = {'clean': Clean}
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
)