-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
34 lines (30 loc) · 920 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "remotior_sensus"
dynamic = ["version"]
authors = [
{ name="Luca Congedo", email="[email protected]" },
]
description = "Remotior Sensus is software to process remote sensing and GIS data"
readme = "README.rst"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Image Processing",
]
[project.urls]
"Homepage" = "https://github.com/semiautomaticgit/remotior_sensus"
"Bug Tracker" = "https://github.com/semiautomaticgit/remotior_sensus/issues"
[tool.hatch.version]
path = "src/remotior_sensus/__init__.py"
[tool.hatch.build]
exclude = [
"*.idea",
"*.git",
"*build",
]