forked from geertj/python-ad
-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
47 lines (45 loc) · 1.66 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
#
# 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='2.0.1',
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='[email protected]',
maintainer='The Atlantic',
maintainer_email='[email protected]',
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 :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
package_dir={'': 'lib'},
packages=[
'activedirectory',
'activedirectory.core',
'activedirectory.protocol',
'activedirectory.util'
],
install_requires=['python-ldap>=3.0', 'dnspython', 'ply>=3.8'],
ext_modules=[Extension(
'activedirectory.protocol.krb5',
['lib/activedirectory/protocol/krb5.c'],
libraries=['krb5']
)],
zip_safe=False, # eggs are the devil.
)