-
Notifications
You must be signed in to change notification settings - Fork 38
/
pyproject.toml
47 lines (40 loc) · 1.05 KB
/
pyproject.toml
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
[project]
name = "flask-ldap3-login"
dynamic = ["version"]
description = "LDAP Support for Flask"
authors = [
{name = "Nick Whyte", email = "nick@nickwhyte.com"},
]
dependencies = [
"Flask",
"Flask-wtf",
"WTForms>=1.0.2",
"ldap3>=2.0.7",
]
requires-python = ">=3.5"
readme = "README.rst"
license = {text = "MIT"}
classifiers = [
"Environment :: Web Environment",
"Framework :: Flask",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
]
[project.urls]
Homepage = "https://github.com/nickw444/flask-ldap3-login"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["flask_ldap3_login"]
[tool.setuptools.dynamic]
version = {file = "VERSION"}
[tool.coverage.report]
fail_under = 80
[tool.coverage.run]
command_line = "-m unittest -v"