-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·41 lines (37 loc) · 1.26 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
#!/usr/bin/env python
#
# Copyright (c) 2007 Thomas Lotze
# See also LICENSE.txt
"""adpasswd.py Pure Python Command line interface to change Active Directory Passwords via LDAP.
usage: adpasswd.py username [password]
"""
from setuptools import setup
longdesc = open("README.txt").read()
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: System :: Systems Administration",
"Topic :: System :: Systems Administration :: Authentication/Directory",
"Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP",
"Topic :: Utilities",
]
setup(
name="adpasswd",
version="0.21",
description=__doc__.strip(),
long_description=longdesc,
keywords="ldap activedirectory AD",
classifiers=classifiers,
author="Craig Sawyer",
author_email="[email protected]",
url="https://launchpad.net/adpasswd",
license="GPL v2",
py_modules=['ldaplib', 'adinterface'],
scripts=['adpassword.py']
)