-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
150 lines (135 loc) · 3.17 KB
/
Copy pathpyproject.toml
File metadata and controls
150 lines (135 loc) · 3.17 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
[project]
name = "onvif-python"
version = "0.4.0"
description = "A modern Python library for ONVIF-compliant devices"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{name = "Nirsimetri Technologies®", email = "open@nirsimetri.com"},
]
maintainers = [
{name = "Kaburagi"},
]
keywords = ["onvif", "Camera", "onvif-python", "ip-camera", "cctv", "soap", "surveillance", "cctv cameras", "soap-client", "onvif-client", "onvif-library", "onvif-specifications"]
classifiers = [
"Development Status :: 5 - Production/Stable",
'Environment :: Console',
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
'Intended Audience :: Science/Research',
"Topic :: Software Development :: Libraries",
'Topic :: Software Development :: Libraries :: Python Modules',
"Topic :: Security",
"Topic :: Multimedia :: Video",
'Topic :: Multimedia :: Sound/Audio',
"Topic :: Communications",
"Topic :: Text Processing :: Markup :: XML",
"Natural Language :: English",
"Natural Language :: Indonesian"
]
license = "MIT"
dependencies = [
"zeep>=4.3.0",
"requests>=2.32.0",
'pyreadline3>=3.5.4; sys_platform == "win32"',
]
[build-system]
requires = ["setuptools>=77.0.3", "wheel"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov",
"black",
"mypy",
"isort",
"pylint",
"docformatter",
]
docs = [
"mkdocs-material",
"mkdocstrings[python]",
"mkdocs-git-authors-plugin",
]
[project.scripts]
onvif = "onvif.cli.main:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["onvif*"]
exclude = [
"examples*",
"tests*",
"assets*",
"build*",
"site*",
"device-test*",
]
[tool.setuptools.package-data]
onvif = ["wsdl/*", "db/*"]
[tool.black]
line-length = 88
target-version = ['py310']
extend-exclude = '''
/(
assets
)/
'''
[tool.isort]
profile = "black"
skip = [
"^examples/",
"^assets/",
"^temp/",
"^build/",
"^site/",
]
[tool.docformatter]
wrap-summaries = 150
wrap-descriptions = 150
pre-summary-newline = true
close-quotes-on-newline = true
[tool.pylint.main]
extension-pkg-allow-list = [
"lxml",
]
ignore-paths = [
"^examples/",
"^assets/",
"^temp/",
"^build/",
"^site/",
]
[tool.pylint.format]
max-line-length = 150
[tool.pylint."messages control"]
disable = [
"duplicate-code",
"R0917", # too-many-positional-arguments
"R0913", # too-many-arguments
]
[tool.mypy]
explicit_package_bases = true
exclude = [
"^examples/",
"^assets/",
"^temp/",
"^build/",
"^site/",
]
[tool.coverage.run]
omit = [
"tests/*",
"device-test/*",
"examples/*",
"docs/*",
]
[project.urls]
Homepage = "https://github.com/nirsimetri/onvif-python"
Documentation = "https://nirsimetri.github.io/onvif-python"
Changelog = "https://github.com/nirsimetri/onvif-python/releases"