forked from pan-maruda/mipc-camera-client-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (34 loc) · 1.13 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
[tool.poetry]
name = "mipc-camera-client"
version = "0.1.4.dev"
description = "command-line interface and client library for MIPC IP cameras"
authors = ["Pan Maruda <[email protected]>"]
readme = "README.md"
packages = [{ include = "mipc_camera_client" }]
license = "BSD-3-Clause"
homepage = "https://github.com/pan-maruda/mipc-camera-client-python"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Programming Language :: Python :: 3.9",
"Topic :: Multimedia :: Video",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries :: Python Modules",
"Natural Language :: English",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop"
]
keywords = ["webcam", "mipc", "rtsp", "ip camera", "cli", "command line interface", "ptz"]
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.31.0"
json5 = "^0.9.14"
pycryptodome = "^3.18.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.1"
black = "^23.7.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
mipc_camera_client = 'mipc_camera_client.cli:main'