File: setup.cfg

package info (click to toggle)
django-ldapdb 2.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 280 kB
  • sloc: python: 1,993; makefile: 40
file content (74 lines) | stat: -rw-r--r-- 1,778 bytes parent folder | download
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
72
73
74
[metadata]
name = django-ldapdb
version = 2.0.0
description = A LDAP database backend for Django
long_description = file: README.rst
keywords = django, ldap, database, ldapdb
url = https://github.com/django-ldapdb/django-ldapdb
author = Jeremy Lainé
author_email = jeremy.laine@m4x.org
maintainer = Raphaël Barrois
maintainer_email = raphael.barrois+django-ldapdb@polytechnique.org
license = BSD
classifiers =
    Development Status :: 5 - Production/Stable
    Environment :: Web Environment
    Framework :: Django :: 4.2
    Framework :: Django :: 5.0
    Framework :: Django :: 5.1
    Intended Audience :: Developers
    Intended Audience :: System Administrators
    License :: OSI Approved :: BSD License
    Programming Language :: Python
    Programming Language :: Python :: 3.8
    Programming Language :: Python :: 3.9
    Programming Language :: Python :: 3.10
    Programming Language :: Python :: 3.11
    Programming Language :: Python :: 3.12
    Topic :: Internet :: WWW/HTTP
    Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP
    Topic :: Software Development :: Libraries :: Python Modules

[options]
zip_safe = false
packages = find:
include_package_data = true
python_requires = >=3.8
install_requires =
    Django>=4.2
    python-ldap>=3.0
setup_requires = setuptools

[options.packages.find]
include =
    ldapdb

[options.extras_require]
dev =
# Quality
    check-manifest
    flake8
    isort>=5.0.0
    tox
# Testing tools
    factory_boy
    volatildap>=1.1.0
# Releasing
    wheel
    zest.releaser[recommended]

[bdist_wheel]
universal = true

[zest.releaser]
; semver-style versions
version-levels = 3

[distutils]
index-servers = pypi

[flake8]
max-line-length = 120

# W503: 'and' on start of line
ignore = W503