-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 852 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 852 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "trdi_adcp_readers"
version = "25.6.4"
description = "A library capable of reading various TRDI ADCP data formats including PD15 and PD0 into python native types."
readme = "README.md"
authors = [
{ name = "USF CMS Ocean Technology Group" }
]
maintainers = [
{ name = "Michael Lindemuth", email = "lindemuth@gmail.com" }
]
license = { text = "MIT" }
requires-python = ">=3.7"
dependencies = []
[project.urls]
Homepage = "https://github.com/USF-COT/trdi_adcp_readers"
[tool.hatch.build]
sources = ["src"]
[dependency-groups]
dev = [
"build>=1.1.1",
"hatchling>=1.17.1",
"twine>=4.0.2",
]
[project.scripts]
convert_trdi = "trdi_adcp_readers.scripts.convert_trdi:main"
convert_trdi_uhi = "trdi_adcp_readers.scripts.convert_trdi_uhi:main"