-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (70 loc) · 2.14 KB
/
pyproject.toml
File metadata and controls
78 lines (70 loc) · 2.14 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
[build-system]
requires = ["setuptools>=77.0.3", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "onvif-python"
version = "0.2.10"
description = "A modern Python library for ONVIF-compliant devices"
readme = "README.md"
requires-python = ">=3.9"
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.9",
"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",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"black",
"flake8",
]
[project.scripts]
onvif = "onvif.cli.main:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["onvif*"]
exclude = ["examples*", "tests*", "assets*"]
[tool.setuptools.package-data]
onvif = ["wsdl/*", "db/*"]
[tool.black]
line-length = 88
target-version = ['py39']
extend-exclude = '''
/(
assets
)/
'''
[project.urls]
Homepage = "https://github.com/nirsimetri/onvif-python"
Documentation = "https://deepwiki.com/nirsimetri/onvif-python"
Changelog = "https://github.com/nirsimetri/onvif-python/releases"