This repository has been archived by the owner on Mar 26, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
70 lines (62 loc) · 1.66 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[tool.poetry]
name = "pfsense-api-client"
version = "0.1.0"
description = "A client for the unofficial pfSense API https://github.com/jaredhendrickson13/pfsense-api"
authors = [
"James Hodgkinson <[email protected]>",
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/yaleman/pfsense-api-client/"
repository = "https://github.com/yaleman/pfsense-api-client/"
documentation = "https://yaleman.github.io/pfsense-api-client/"
keywords = [
"pfsense",
"API",
]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.28.1"
click = "^8.0.3"
pydantic = "^1.10.2"
[tool.poetry.dev-dependencies]
pylint = "^2.15.5"
pytest = "^7.2.0"
mypy = "^1.0"
black = "^23.1"
types-requests = "^2.28.11"
pylint-pydantic = "^0.1.4"
mkdocstrings = "^0.20.0"
mkdocs-material = "^9.0.2"
mkdocs = "^1.4.2"
loguru = "^0.6.0"
pylint-pytest = "^1.1.2"
click = "^8.1.2"
questionary = "^1.10.0"
mkdocstrings-python = "^0.8.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
[build-system]
requires = [
"poetry-core>=1.0.0",
]
build-backend = "poetry.core.masonry.api"
[project]
name = "pfsense-api-client"
description = "A client for the unofficial pfSense API https://github.com/jaredhendrickson13/pfsense-api"
license = "MIT"
version = "0.0.1"
authors = [
{ name = "James Hodgkinson", email = "[email protected]" },
]
[tool.pylint.MASTER]
disable="W0511,R0801"
# https://github.com/samuelcolvin/pydantic/issues/1961#issuecomment-759522422
extension-pkg-whitelist="pydantic"
max-line-length=200
load-plugins="pylint_pydantic,pylint_pytest"
[tool.pytest]
ignore="site/"