-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (37 loc) · 1011 Bytes
/
pyproject.toml
File metadata and controls
46 lines (37 loc) · 1011 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
36
37
38
39
40
41
42
43
44
45
46
[tool.poetry]
name = "pylithiumsso3"
version = "0.1.1"
description = "Python 3 port of lithium_sso.php"
authors = ["Ron Zuckerman"]
readme = "README.md"
license = "LICENSE.txt"
homepage = "https://github.com/rzuckerm/pylithiumsso3"
classifiers = [
"Operating System :: OS Independent",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/rzuckerm/pylithiumsso3/issues"
"Documentation" = "https://rzuckerm.github.io/pylithiumsso3/"
[tool.poetry.dependencies]
python = "^3.8"
pycryptodome = "^3.15.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.1.3"
pytest-cov = "^4.0.0"
coverage = "^6.5.0"
[tool.poetry.group.lint.dependencies]
pylint = "^2.15.3"
mypy = "^0.981"
black = "^22.8.0"
[tool.poetry.group.doc.dependencies]
sphinx-rtd-theme = "^1.0.0"
Sphinx = "^5.2.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pylint.format]
max-line-length = 100
[tool.pylint.message]
disable = ["too-many-arguments"]
[tool.pylint.basic]
good-names = ["iv"]