forked from Legrandin/PyAuthenNTLM2
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 757 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from distutils.core import setup
setup( name='PyAuthenNTLM2',
description='PyAuthenNTLM2 is a pure Python module that enables Apache to carry out authentication via NTLM and an external Domain Controller or Active Directory server.',
version="2.2",
author='Legrandin',
author_email='helderijs@gmail.com',
url='https://github.com/Legrandin/PyAuthenNTLM2',
license='Apache 2.0',
py_modules=['pyntlm'],
packages=['PyAuthenNTLM2'],
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Intended Audience :: System Administrators',
'Environment :: Plugins',
'Framework :: mod-python',
],
)