forked from django-ldapdb/django-ldapdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·71 lines (61 loc) · 2.23 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# This software is distributed under the two-clause BSD license.
# Copyright (c) The django-ldapdb project
from __future__ import unicode_literals
import codecs
import os
import re
import sys
from setuptools import find_packages, setup
root_dir = os.path.abspath(os.path.dirname(__file__))
def get_version(package_name):
version_re = re.compile(r"^VERSION = [\"']([\w_.-]+)[\"']$")
package_components = package_name.split('.')
init_path = os.path.join(root_dir, *(package_components + ['version.py']))
with codecs.open(init_path, 'r', 'utf-8') as f:
for line in f:
match = version_re.match(line[:-1])
if match:
return match.groups()[0]
return '0.1.0'
PACKAGE = 'django-ldapdb'
PYPACKAGE = 'ldapdb'
setup(
name=PACKAGE,
version=get_version(PYPACKAGE),
description="An LDAP database backend for Django",
long_description=''.join(codecs.open('README.rst', 'r', 'utf-8').readlines()),
author="Jeremy Laine",
author_email="[email protected]",
maintainer="Raphaël Barrois",
maintainer_email="raphael.barrois+%[email protected]" % PACKAGE,
license="BSD",
keywords=['django', 'ldap', 'database'],
url="https://github.com/{pn}/{pn}".format(pn=PACKAGE),
packages=find_packages(exclude=['tests*', 'examples*']),
install_requires=[
'Django>=1.8',
'pyldap>=2.4.25',
],
setup_requires=[
'setuptools>=0.8',
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Framework :: Django :: 1.8",
"Framework :: Django :: 1.10",
"Framework :: Django :: 1.11",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: Internet :: WWW/HTTP",
"Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP",
"Topic :: Software Development :: Libraries :: Python Modules",
],
test_suite = 'manage_dev.run_tests'
)