-
Notifications
You must be signed in to change notification settings - Fork 54
/
pyproject.toml
114 lines (96 loc) · 2.49 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
[build-system]
requires = ["setuptools>=61.2", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "opensartoolkit"
version = "0.13.1"
description = "python module"
keywords = ["skeleton", "Python"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"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",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.6.9"
dependencies = [
"descartes",
"fiona",
"gdal==3.6.4",
"godale",
"pyproj",
"geopandas",
"jupyterlab",
"matplotlib",
"numpy",
"pandas",
"psycopg2-binary",
"rasterio",
"requests",
"scipy",
"shapely",
"tqdm",
"imageio",
"rtree",
"retrying",
"pytest",
"pytest-cov",
"pytest-runner"
]
[[project.authors]]
name = "Andreas Vollrath"
email = "[email protected]"
[project.license]
text = "MIT"
[project.readme]
file = "README.rst"
content-type = "text/x-rst"
[project.urls]
Homepage = "https://github.com/ESA-PhiLab/OpenSarToolkit/"
[project.optional-dependencies]
dev = ["pre-commit", "commitizen", "nox", "mypy"]
test = ["pytest", "pytest-sugar", "pytest-cov", "pytest-deadfixtures"]
doc = ["sphinx", "pydata-sphinx-theme", "sphinx-copybutton", "sphinx-design", "sphinx-icon", "sphinx-btn"]
[tool.setuptools]
include-package-data = true
license-files = ["LICENSE"]
[tool.setuptools.packages.find]
include = ["ost*"]
exclude = ["docs*", "tests*"]
[tool.commitizen]
tag_format = "v$major.$minor.$patch$prerelease"
update_changelog_on_bump = false
version = "0.0.0"
version_files = [
"pyproject.toml:version",
"sampling_handler/__init__.py:__version__",
"docs/conf.py:release"
]
[tool.pytest.ini_options]
testpaths = "tests"
[tool.ruff]
ignore-init-module-imports = true
fix = true
select = ["E", "F", "W", "I", "D", "RUF"]
ignore = ["E501"] # line too long | Black take care of it
[tool.ruff.flake8-quotes]
docstring-quotes = "double"
[tool.ruff.pydocstyle]
convention = "google"
[tool.coverage.run]
source = ["ost"]
[tool.doc8]
ignore = ["D001"] # we follow a 1 line = 1 paragraph style
[tool.mypy]
scripts_are_modules = true
ignore_missing_imports = true
install_types = true
non_interactive = true
warn_redundant_casts = true
[tool.licensecheck]
using = "PEP631:test;dev;doc"