forked from vlaci/openconnect-sso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (47 loc) · 1.37 KB
/
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
53
[tool.poetry]
name = "openconnect-sso"
version = "0.8.1"
description = "Wrapper script for OpenConnect supporting Azure AD (SAMLv2) authentication to Cisco SSL-VPNs"
license = "GPL-3.0-only"
authors = ["László Vaskó <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/vlaci/openconnect-sso"
repository = "https://github.com/vlaci/openconnect-sso"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: X11 Applications :: Qt",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Topic :: System :: Networking",
]
[tool.poetry.scripts]
openconnect-sso = "openconnect_sso.cli:main"
[tool.poetry.dependencies]
python = "^3.8"
attrs = ">=18.2"
colorama = "^0.4"
importlib-metadata = { version = "^3.10.0", python = "<3.8" }
lxml = "^4.3"
keyring = ">=21.1, <24.0.0"
prompt-toolkit = "^3.0.3"
pyxdg = ">=0.26, <0.29"
requests = "^2.22"
structlog = ">=20.1"
toml = "^0.10"
setuptools = ">40.0"
PySocks = "^1.7.1"
PyQt6 = "^6.3.0"
PyQt6-WebEngine = "^6.3.0"
pyotp = "^2.7.0"
[tool.poetry.dev-dependencies]
coverage_enable_subprocess = "^1.0"
pytest = "^7.2"
black = "=22.10"
pytest-asyncio = "^0.20.1"
pytest-cov = "^4.0"
pytest-httpserver = "^1.0"
[tool.black]
target-version = ['py36', 'py37', 'py38']
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"