-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·48 lines (41 loc) · 1.39 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
#!/usr/bin/python2
# -*- coding: utf-8 -*-
# Keystone LDAP
# Copyright (C) 2010-2012 Grid Dynamics Consulting Services, Inc
# All Rights Reserved
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this program. If not, see
# <http://www.gnu.org/licenses/>.
"""
Keystone LDAP plugin
"""
import os
from setuptools import setup, find_packages, findall
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='keystone-ldap',
version='1.0',
url='http://github.com/altai/keystone-ldap/',
license='Apache 2.0',
author='Alessio Ababilov',
author_email='[email protected]',
description='Keystone LDAP plugin',
long_description=__doc__,
packages=find_packages(exclude=["bin", "tests"]),
include_package_data=True,
zip_safe=False,
platforms='any',
test_suite='tests'
)