forked from theatlantic/python-active-directory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (50 loc) · 1.87 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
#
# This file is part of Python-AD. Python-AD is free software that is made
# available under the MIT license. Consult the file "LICENSE" that is
# distributed together with this file for the exact licensing terms.
#
# Python-AD is copyright (c) 2007 by the Python-AD authors. See the file
# "AUTHORS" for a complete overview.
from setuptools import setup, Extension
setup(
name='python-active-directory',
version='1.0.4',
description='An Active Directory client library for Python',
long_description=open('README.rst').read(),
long_description_content_type='text/x-rst',
author='Geert Jansen',
author_email='programmers@theatlantic.com',
maintainer='The Atlantic',
maintainer_email='programmers@theatlantic.com',
url='https://github.com/theatlantic/python-active-directory',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
package_dir={'': 'lib'},
packages=[
'activedirectory',
'activedirectory.core',
'activedirectory.protocol',
'activedirectory.util'
],
tests_require=['nose', 'pexpect'],
install_requires=['python-ldap>=3.0', 'dnspython', 'ply==3.8', 'six'],
ext_modules=[Extension(
'activedirectory.protocol.krb5',
['lib/activedirectory/protocol/krb5.c'],
libraries=['krb5']
)],
zip_safe=False, # eggs are the devil.
test_suite='nose.collector'
)