-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
66 lines (57 loc) · 1.88 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["hot_fair_utilities"]
[project]
name = "hot-fair-utilities"
version = "2.0.6"
description = "Utilities for AI - Assisted Mapping fAIr"
readme = "README.md"
authors = [{ name = "Hot Tech Team", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
]
keywords = [
"preprocessing", "inference",
"postprocessing", "stitching","training"
]
dependencies = [
"shapely==1.8.0", "numpy",
"Pillow==9.1.0", "geopandas>=0.12.0,<=0.14.4", "pandas>=2.0.0,<=2.2.3" ,
"rasterio", "mercantile==1.2.1", "tqdm==4.67.0",
"rtree","opencv-python-headless<=4.10.0.84",
"torch>=2.0.0,<=2.5.1", "torchvision>=0.10.0,<=0.20.1", "torchaudio>=2.0.0,<=2.5.1","ultralytics>=8.0.0,<=8.3.26",
"ramp-fair==0.1.2", "protobuf==3.20.2"
]
requires-python = ">=3.7"
[project.optional-dependencies]
build = ["build", "twine"]
dev = ["black", "bumpver", "isort"]
[project.urls]
repository = "https://github.com/hotosm/fAIr-utilities"
[tool.bumpver]
current_version = "1.0.51"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'current_version = "{version}"',
'version = "{version}"',
]
[tool.isort]
profile = "black"
import_heading_stdlib = "Standard library imports"
import_heading_thirdparty = "Third party imports"
import_heading_firstparty = "Reader imports"
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "v$version"
version_scheme = "semver"
version_provider = "pep621"
update_changelog_on_bump = true