-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
32 lines (29 loc) · 1.1 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
from setuptools import setup
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: System :: Systems Administration :: Authentication/Directory',
'Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP',
]
setup(
name="simpleldap",
version="0.8",
description="A module that makes simple LDAP usage simple.",
long_description=open('README.rst').read(),
keywords="ldap simple simpleldap",
author="Gary Wilson Jr.",
author_email="[email protected]",
url="https://github.com/gdub/python-simpleldap",
license="MIT",
packages=["simpleldap"],
install_requires=["python-ldap"],
tests_require=["tox", "pytest", "pep8", "python-ldap"],
)