-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
52 lines (44 loc) · 905 Bytes
/
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
48
49
50
51
52
[project]
name = "keycloak-fetch-bot"
version = "0.0.9"
authors = [
{name = "Cesar Valdez"}
]
description = "Export data from KeyCloak server"
keywords = [
"KeyCloak"
]
requires-python = ">=3.8"
dependencies = [
"kcapi>=1.0.39",
"importlib_resources",
]
[project.urls]
repository = "https://github.com/cesarvr/keycloak-fetch-bot"
[project.scripts]
kcfetcher = "kcfetcher.main:main_cli"
[build-system]
requires = [
"setuptools>=42",
"wheel"
] # PEP 508 specifications.
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = []
packages = [
"kcfetcher",
"kcfetcher.fetch",
"kcfetcher.store",
"kcfetcher.utils"
]
include-package-data = true
[tool.setuptools.package-data]
"kcfetcher.data" = ["kcfetcher_blacklist"]
[tool.black]
line-length = 160
target_version = ['py38']
[tool.pytest.ini_options]
# minversion = "2.0"
pythonpath = [
"."
]