-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (26 loc) · 903 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
[tool.poetry]
name = "discord-to-authentik"
version = "0.1.2"
description = "Synchronize roles you create in Discord to authentik for Discord Auth managment"
authors = ["Dominik Rathmer <[email protected]>"]
license = "GPLv3"
readme = "README.md"
packages = [{include = "discord_to_authentik"}]
homepage = "https://pypi.org/project/discord-to-authentik/"
repository = "https://github.com/rathmerdominik/discord-to-authentik"
[tool.poetry.dependencies]
python = "^3.12"
authentik-client = "^2024.8.0.post1725367375"
"discord.py" = "^2.4.0"
python-dotenv = "^1.0.1"
click = "^8.1.7"
[tool.poetry.group.dev.dependencies]
mypy = "^1.11.2"
black = "^24.8.0"
flake8 = "^7.1.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
discord-to-authentik = "discord_to_authentik.main:main"
discord-to-authentik-setup = "discord_to_authentik.setup:main"