forked from Cito/pyramid_ldap3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (48 loc) · 1.63 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
53
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
requires = ['pyramid>=1.3']
if not 'READTHEDOCS' in os.environ:
# hail mary for readthedocs
requires.append('python3-ldap')
sampleapp_extras = [
'waitress',
'pyramid_debugtoolbar']
testing_extras = ['nose', 'coverage']
docs_extras = ['Sphinx']
setup(
name='pyramid_ldap3',
version='0.2.3',
description='pyramid_ldap3',
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Programming Language :: Python",
"Framework :: Pylons",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Topic :: System :: Systems Administration"
" :: Authentication/Directory :: LDAP",
"License :: Repoze Public License"],
author='Chris McDonough, Christoph Zwerschke',
author_email='[email protected]',
url='http://pylonsproject.org',
license="BSD-derived (http://www.repoze.org/LICENSE.txt)",
keywords='web pyramid pylons ldap',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
tests_require=requires,
extras_require=dict(
sampleapp=sampleapp_extras,
docs=docs_extras,
testing=testing_extras),
test_suite='pyramid_ldap3',
entry_points="""\
[paste.app_factory]
sampleapp = sampleapp:main
""")