2023-04-28 02:45:32 +02:00
|
|
|
[build-system]
|
|
|
|
requires = ["flit_core >=3.2,<4"]
|
|
|
|
build-backend = "flit_core.buildapi"
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "ldaptool"
|
|
|
|
authors = [
|
|
|
|
{name = "Stefan Bühler", email = "stefan.buehler@tik.uni-stuttgart.de"},
|
|
|
|
{name = "Daniel Dizdarevic", email = "daniel.dizdarevic@tik.uni-stuttgart.de"},
|
|
|
|
]
|
|
|
|
readme = "README.md"
|
|
|
|
license = {file = "LICENSE"}
|
|
|
|
classifiers = [
|
|
|
|
"Private :: Do Not Upload",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
]
|
|
|
|
dynamic = ["version", "description"]
|
|
|
|
|
2023-05-02 17:16:16 +02:00
|
|
|
requires-python = "~=3.10"
|
2023-04-28 02:45:32 +02:00
|
|
|
dependencies = [
|
|
|
|
"python-ldap",
|
|
|
|
"PyYAML",
|
|
|
|
]
|
|
|
|
|
2023-04-28 14:37:24 +02:00
|
|
|
[project.optional-dependencies]
|
|
|
|
keepass = [
|
|
|
|
"pykeepass",
|
|
|
|
]
|
|
|
|
|
2023-04-28 02:45:32 +02:00
|
|
|
[project.scripts]
|
|
|
|
ldaptool = "ldaptool._main:main"
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
# Documentation = "..."
|
|
|
|
Source = "https://git-nks-public.tik.uni-stuttgart.de/net/ldaptool"
|
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
line-length = 120
|
|
|
|
|
|
|
|
[tool.mypy]
|
|
|
|
disallow_any_generics = true
|
|
|
|
disallow_untyped_defs = true
|
|
|
|
warn_redundant_casts = true
|
|
|
|
warn_return_any = true
|
|
|
|
warn_unused_configs = true
|
|
|
|
warn_unused_ignores = true
|
|
|
|
warn_unreachable = true
|
|
|
|
|
|
|
|
[[tool.mypy.overrides]]
|
|
|
|
module = [
|
|
|
|
"ldap",
|
|
|
|
"ldap.dn",
|
|
|
|
"ldap.controls.libldap",
|
2023-04-28 14:37:24 +02:00
|
|
|
"pykeepass",
|
2023-04-28 02:45:32 +02:00
|
|
|
]
|
|
|
|
ignore_missing_imports = true
|