-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
74 lines (61 loc) · 1.95 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
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "src/geocover_qa/_version.py"
version_scheme = "post-release"
local_scheme = "no-local-version"
[project]
name = "geocover-qa"
dynamic = ["version"]
readme = "README.md"
authors = [
{name = "Marc Monnerat", email = "[email protected]"}
]
keywords = ["GIS", "GeoCover", "swisstopo", "geology", "switzerland", "vector"]
description = "package description"
requires-python = ">=3.9"
dependencies = [
"geopandas",
"click",
"fiona",
"gdal" ,
"openpyxl",
"matplotlib",
"pandas",
"numpy",
"loguru",
]
license = {file = "LICENSE"}
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 3 - Alpha",
# Indicate who your project is intended for
"Intended Audience :: Developers",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: GIS",
# Specify the Python versions you support here.
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.optional-dependencies]
gui = ["PyQt5","pyqtspinner"]
dev= ["pytest>=7.0.0","ruff", "flake8","twine", "conda-build" ,"setuptools_scm" ]
[project.urls]
Homepage = "https://example.com"
Documentation = "https://readthedocs.org"
Repository = "https://github.com/swisstopo/lg-geocover-qa-report.git"
[project.entry-points."geocover.plugins"]
qa = "geocover_qa.cli.commands:qa"
#[project.scripts]
#geocover = "geocover_qa.cli.commands:geocover"