-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (38 loc) · 1011 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
[tool.poetry]
name = "afs-tools"
version = "0.0.0" # overriden on release in CI
description = "Tools to work with an AFS setup"
authors = [
"Marc 'risson' Schmitt <marc.schmitt@prologin.org>",
"Association Prologin <info@prologin.org>",
]
license = "GPL-3.0-or-later"
readme = "README.md"
repository = "https://gitlab.com/prologin/tech/tools/afs-tools"
[[tool.poetry.source]]
name = "gitlab-prologin"
url = "https://gitlab.com/api/v4/groups/prologin/-/packages/pypi/simple"
secondary = true
[tool.poetry.dependencies]
python = ">=3.9,<4"
click = "^8.1"
dataconf = "^2.1"
python-ldap = "^3.4"
sh = "^1.14"
[tool.poetry.dev-dependencies]
black = "*"
ipython = "*"
isort = "*"
pre-commit = "*"
prospector = { version = "*", extras = ["with_everything"] }
renogin = "*"
[tool.poetry.scripts]
afs-tools = "afs_tools.__main__:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 79
[tool.isort]
profile = "black"
line_length = 79