-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
60 lines (55 loc) · 2.04 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
##############################################
# The MIT License (MIT)
# Copyright (c) 2014 Kevin Walchko
# see LICENSE for full details
##############################################
[tool.poetry]
name = "opencv_camera"
version = "2023.01.07"
description = "An OpenCV camera library"
authors = ["walchko <[email protected]>"]
readme = "readme.md"
license = "MIT"
homepage = "https://pypi.org/project/opencv_camera/"
repository = 'https://github.com/MomsFriendlyRobotCompany/opencv_camera'
# documentation = "http://..."
keywords = ['computer vision', 'camera', "calibration", 'opencv', "jupyter", "stereo camera", "cv", "cv2"]
# https://pypi.org/classifiers/
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
"Framework :: Jupyter",
"Framework :: Matplotlib",
"Framework :: Robot Framework :: Library",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries :: Application Frameworks',
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Image Processing"
]
[tool.poetry.scripts]
opencv_calibrate = "opencv_camera.bin.camera_calibrate:main"
opencv_mjpeg = "opencv_camera.bin.mjpeg_server:main"
opencv_capture = "opencv_camera.bin.video_capture:main"
udp_server = "opencv_camera.bin.udp_server:main"
udp_client = "opencv_camera.bin.udp_client:main"
[tool.poetry.dependencies]
python = ">=3.8"
colorama = "*" # remove in future?
numpy = "*"
pyyaml = "*"
opencv-contrib-python = "*"
matplotlib = "*"
[tool.poetry.dev-dependencies]
pytest = "*"
[build-system]
requires = ["poetry>=1.0.0"]
build-backend = "poetry.masonry.api"