-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathsetup.py
More file actions
65 lines (59 loc) · 2.09 KB
/
Copy pathsetup.py
File metadata and controls
65 lines (59 loc) · 2.09 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
"""Package Setup."""
from pathlib import Path
from setuptools import find_packages, setup
here = Path(__file__).parent.resolve()
version_path = here / "onvif" / "version.txt"
with version_path.open(encoding="utf-8") as version_file:
version = version_file.read().strip()
with Path("README.rst").open(encoding="utf-8") as readme_file:
long_description = readme_file.read()
requires = [
"aiohttp>=3.12.9",
"httpx>=0.19.0,<1.0.0",
"zeep[async]>=4.2.1,<5.0.0",
"ciso8601>=2.1.3",
"yarl>=1.10.0",
]
CLASSIFIERS = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Customer Service",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Intended Audience :: Telecommunications Industry",
"Natural Language :: English",
"Operating System :: POSIX",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Utilities",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
]
setup(
name="onvif-zeep-async",
version=version,
description="Async Python Client for ONVIF Camera",
long_description=long_description,
author="Cherish Chen",
author_email="sinchb128@gmail.com",
maintainer="sinchb",
maintainer_email="sinchb128@gmail.com",
license="MIT",
keywords=["ONVIF", "Camera", "IPC"],
url="http://github.com/hunterjm/python-onvif-zeep-async",
zip_safe=False,
python_requires=">=3.10",
packages=find_packages(exclude=["docs", "examples", "tests"]),
install_requires=requires,
package_data={
"": ["*.txt", "*.rst"],
"onvif": ["*.wsdl", "*.xsd", "*xml*", "envelope", "include", "addressing"],
"onvif.wsdl": ["*.wsdl", "*.xsd", "*xml*", "envelope", "include", "addressing"],
},
)