-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
66 lines (57 loc) · 1.79 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "geo-inference"
version = "2.0.1"
description = "Extract features from geospatial imagery using deep learning models"
readme = "README.md"
authors = [{ name = "Victor Alhassan", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: GIS",
]
keywords = ["pytorch", "deep learning", "machine learning", "remote sensing", "satellite imagery", "earth observation", "geospatial"]
dependencies = [
"affine>=2.3.0",
"colorlog==6.7.0",
"numpy>=1.19.3",
"pandas>=1.1.3",
"scipy>=1.11.2",
"pyyaml>=5.2",
"requests>=2.22.0",
"torch>=1.12",
"torchgeo>=0.3",
"pynvml>=11.0",
"fiona>=1.8.19",
"geopandas>=0.10.2",
"pyproj>=3",
"rasterio>=1.2",
"rtree>=1",
"shapely>=1.7.1",]
requires-python = ">=3.9"
[project.optional-dependencies]
dev = ["black", "bumpver", "isort", "pip-tools", "pytest"]
[project.urls]
Homepage = "https://github.com/valhassan/geo-inference"
[project.scripts]
geo_inference = "geo_inference.geo_inference:main"
[tool.setuptools.packages.find]
include = ["geo_inference*"]
[tool.bumpver]
current_version = "2.0.1"
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" = [
'^version = "{version}"',
'^current_version = "{version}"',]
"geo_inference/__init__.py" = ["{version}"]