-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
75 lines (66 loc) · 1.9 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
[build-system]
requires = ["setuptools >= 61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyotb"
description = "Library to enable easy use of the Orfeo ToolBox (OTB) in Python"
authors = [
{ name = "Rémi Cresson", email = "[email protected]" },
{ name = "Nicolas Narçon" },
{ name = "Vincent Delbar" },
]
requires-python = ">=3.7"
keywords = ["gis", "remote sensing", "otb", "orfeotoolbox", "orfeo toolbox"]
dependencies = ["numpy>=1.16"]
readme = "README.md"
license = { text = "Apache-2.0" }
dynamic = ["version"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Image Processing",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"pylint",
"codespell",
"pydocstyle",
"tomli",
"requests",
]
[project.urls]
documentation = "https://pyotb.readthedocs.io"
homepage = "https://github.com/orfeotoolbox/pyotb"
repository = "https://forgemia.inra.fr/orfeo-toolbox/pyotb"
[tool.setuptools]
packages = ["pyotb"]
[tool.setuptools.dynamic]
version = { attr = "pyotb.__version__" }
[tool.pylint]
max-line-length = 88
max-module-lines = 2000
good-names = ["x", "y", "i", "j", "k", "e"]
disable = [
"line-too-long",
"too-many-locals",
"too-many-branches",
"too-many-statements",
"too-many-instance-attributes",
]
[tool.pydocstyle]
convention = "google"
[tool.black]
line-length = 88
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "--color=yes --cov=pyotb --no-cov-on-fail --cov-report term"
testpaths = ["tests"]