-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (82 loc) 路 2.93 KB
/
Copy pathpyproject.toml
File metadata and controls
94 lines (82 loc) 路 2.93 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# ==============================================================
# Stabilo Optimize - MIT License
# ==============================================================
# Overview:
# This pyproject.toml file configures the build system and project metadata
# for the Stabilo Optimize package.
#
# Installation:
# pip install stabilo-optimize # from PyPI
# pip install -e . # core (editable)
# pip install -e '.[dev]' # core + dev
# uv venv --python 3.11 && uv pip install -e . # core (uv; faster)
# uv venv --python 3.11 && uv pip install -e '.[dev]' # core + dev (uv)
#
# ==============================================================
[build-system]
requires = ["setuptools>=77.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "stabilo-optimize"
dynamic = ["version"]
description = "Stabilo Optimize: A Framework for Comprehensive Evaluation and Analysis for the Stabilo Library"
authors = [
{ name = "Robert Fonod", email = "robert.fonod@ieee.org" },
]
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.9"
keywords = ["hyperparameter-optimization", "grid-search", "image-registration", "homography-estimation", "feature-matching", "RANSAC-algorithms", "aerial-video-analysis", "object-stabilization", "computer-vision"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"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 = [
"stabilo>=1.3.1",
"torch>=2.5.1",
"pandas>=2.2.3",
"matplotlib>=3.9.4",
"psutil>=6.1.1",
"tqdm>=4.64.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"ruff>=0.11.0",
]
[project.urls]
Homepage = "https://github.com/rfonod/stabilo-optimize/"
Repository = "https://github.com/rfonod/stabilo-optimize/"
Changelog = "https://github.com/rfonod/stabilo-optimize/releases"
Issues = "https://github.com/rfonod/stabilo-optimize/issues/"
[project.scripts]
stabilo-optimize = "stabilo_optimize.cli:main"
[tool.setuptools]
packages = { find = { where = ["."], include = ["stabilo_optimize", "stabilo_optimize.*"] } }
[tool.setuptools.dynamic]
version = { attr = "stabilo_optimize.__version__" }
[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"
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-ra"
testpaths = [
"tests",
]