-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
34 lines (29 loc) · 1.04 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "s100py"
version = "1.0.2"
authors = [
{ name="Barry Gallagher", email="[email protected]" },
{ name="Erin Nagel", email="[email protected]" }
]
description = "This python package provides api and utilities for encoding hydrographic datasets in the International Hydrographic Organization (IHO) S-100 format"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["S-100", "S-102", "S-111", "S-104", "hydrographic"]
dependencies = [
"h5py",
"numpy",
]
classifiers = [
'Programming Language :: Python :: 3',
'Intended Audience :: Science/Research',
'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
'Operating System :: OS Independent',
]
[project.urls]
"Homepage" = "https://github.com/noaa-ocs-s100/s100py"
"Bug Tracker" = "https://github.com/noaa-ocs-s100/s100py/issues/"
"Documentation" = "https://s100py.readthedocs.io/en/latest/"
"Source" = "https://github.com/noaa-ocs-s100/s100py"