-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
88 lines (78 loc) · 2.63 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
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
# ==============================================================
# Stabilo - MIT License
# ==============================================================
# Overview:
# This pyproject.toml file configures the build system and
# project metadata for the Stabilo package.
#
# Installation:
# To install the Stabilo package, use the following command:
# pip install stabilo
#
# For development purposes, enabling real-time updates without
# reinstallation, use one of the following commands:
# pip install -e .[dev]
# pip install -e '.[dev]' (for zsh shells)
#
# ==============================================================
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "stabilo"
dynamic = ["version"]
description = "Stabilizes video or extracted trajectories with respect to a selected reference frame in the video, with optional user-provided masks."
authors = [
{ name = "Robert Fonod", email = "robert.fonod@ieee.org" },
]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
keywords = ["stabilo", "video-stabilization", "object-stabilization", "mask", "reference-frame", "computer-vision"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
"Topic :: Multimedia :: Video",
]
dependencies = [
"numpy>=1.26.4,<2.0",
"opencv-python>=4.6.0",
"pyyaml>=5.3.1",
"tqdm>=4.64.0",
]
[project.optional-dependencies]
extras = [
"matplotlib>=3.5.0"
]
dev = [
"pytest>=7.0.0",
"matplotlib>=3.5.0"
]
[tool.setuptools]
packages = { find = { where = ["."], include = ["stabilo", "stabilo.*"] } }
package-data = { "stabilo" = ["**/*.yaml", "**/*.txt"] }
[tool.setuptools.dynamic]
version = { attr = "stabilo.__version__" }
[project.urls]
Homepage = "https://github.com/rfonod/stabilo/"
Repository = "https://github.com/rfonod/stabilo/"
Changelog = "https://github.com/rfonod/stabilo/releases"
Issues = "https://github.com/rfonod/stabilo/issues/"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ['E', 'F', 'W', 'A', "B", 'PLC', 'PLE', 'PLW', 'I']
[tool.ruff.format]
docstring-code-format = true
quote-style = "preserve"