-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (30 loc) · 867 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
[project]
name = "isecapipy"
version = "0.0.1"
description = "A Python wrapper for the Ivanti Security Controls Console REST API"
authors = [
{name = "Patrick Coffey", email = "patrick@coffeystudio.com"},
]
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = ["ISEC", "Security Controls", "ISEC API", "ISEC REST API", "Ivanti",]
dependencies = [
"requests>=2.28.2",
"requests-ntlm>=1.2.0",
"pydantic>=2.0.3",
"requests-kerberos>=0.14.0; os_name == 'nt'",
]
[project.optional-dependencies]
windows = ["requests-kerberos"]
[project.scripts]
isec-set-auth = "isecapipy:manage"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
# Decrease the maximum line length to 79 characters.
line-length = 100
src = ["src"]
[project.urls]
Repository = "https://github.com/patrcoff/isecapipy.git"