-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
executable file
·41 lines (38 loc) · 1.11 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
[build-system]
requires = [
"setuptools >= 40.9.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "scn_db_tools"
dynamic = ["version"]
authors = [
{name = "Thomas Storm", email = "[email protected]"}
]
description = """\
Python tool for registering calibration sites, targets, and surveys to the SARCalNet database \
"""
keywords = [
"calibration sites", "calibration targets", "calibration target surveys"
]
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE", content-type = "text/markdown"}
requires-python = ">=3.10"
dependencies = [
"click",
"geopandas",
"openpyxl",
"pandas",
"pyproj",
"python-dateutil",
"requests",
"shapely",
"xcube_geodb"
]
[tool.setuptools.dynamic]
version = {attr = "scn_db_tools.__version__"}
[project.urls]
Documentation = "https://www.sarcalnet.org/"
Issues = "https://github.com/sarcalnet/sarcalnet-submission-tools/issues"
Changelog = "https://github.com/sarcalnet/sarcalnet-submission-tools/blob/main/CHANGES.md"
Repository = "https://github.com/sarcalnet/sarcalnet-submission-tools"