-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (28 loc) · 883 Bytes
/
pyproject.toml
File metadata and controls
35 lines (28 loc) · 883 Bytes
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
[build-system]
requires = ["setuptools >= 70.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mango_auth"
version = "0.0.11"
authors = [
{ name="Peter Verraedt", email="peter.verraedt@kuleuven.be" },
]
description = "Mango Auth is a small python module to authenticate using interactive pam authentication against an iRODS installation, opening web browser links as needed."
readme = "README.md"
requires-python = ">=3.8"
license = { text = "BSD-3-Clause" }
dependencies = [
"python-irodsclient >= 3.2.0",
]
[tool.setuptools]
license-files = ["LICENSE"]
[project.scripts]
mango_auth = "mango_auth:iinit_cli"
[project.urls]
repository = "https://github.com/kuleuven/mango-auth"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.packages.find]
include = ['mango_auth']
[tool.pylint.reports]
output-format = ["colorized"]