forked from PaloAltoNetworks/pan-os-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
66 lines (62 loc) · 2.15 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
[tool.poetry]
name = "pan-os-python"
version = "1.7.1"
description = "Framework for interacting with Palo Alto Networks devices via API"
authors = ["Palo Alto Networks <[email protected]>"]
license = "ISC"
keywords = ["panos", "pan-os-python"]
readme = "README.md"
homepage = "https://github.com/PaloAltoNetworks/pan-os-python"
repository = "https://github.com/PaloAltoNetworks/pan-os-python"
documentation = "https://pan-os-python.readthedocs.io"
packages = [
{ include = "panos" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: ISC License (ISCL)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
]
[tool.poetry.dependencies]
python = "^2.7 || ^3.5"
pan-python = "^0.17.0"
[tool.poetry.dev-dependencies]
pytest = {version = "^5.3.2", python = "^3.5"}
black = {version = "^19.10b0", python = "^3.6"}
flake8-eradicate = {version = "^0.2.4", python = "^3.6"}
flake8-bugbear = {version = "^20.1.2", python = "^3.6"}
flake8 = "^3.7.9"
flake8-logging-format = "^0.6.0"
flake8-pep3101 = "^1.3.0"
flake8-builtins = "^1.4.2"
flake8-comprehensions = {version = "^3.1.4", python = "^3.5"}
flake8-string-format = "^0.2.3"
flake8-mutable = "^1.2.0"
flake8-pytest = "^1.3"
flake8-mock = "^0.3"
flake8-docstrings = "^1.5.0"
flake8-variables-names = "^0.0.3"
pep8-naming = "^0.9.1"
dephell = {version = "^0.8.3", python = "^3.6"}
fissix = {version = "^19.2b1", python = "^3.6"}
sphinx = {version = "^2.3.1", python = "^3.5"}
pytest-cov = {version = "^2.8.1", python = "^3.5"}
sphinx_rtd_theme = {version = "^0.4.3", python = "^3.5"}
sphinx-autobuild = {version = "^0.7.1", python = "^3.5"}
bandit = "^1.6.2"
isort = "^4.3.21"
m2r = "^0.2.1"
[tool.dephell.main]
# read from poetry file
from = {format = "poetry", path = "pyproject.toml"}
# and convert into setup.py
to = {format = "setuppy", path = "setup.py"}
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"