forked from CI-CMG/csbschema
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 1.04 KB
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "csbschema"
authors = [
{ name="Brian Miles", email="bmiles@ccom.unh.edu" },
{ name="Brian Calder", email="brc@ccom.unh.edu" }
]
description = "JSON Schema and validator for IHO B-12 Crowdsourced Bathymetry metadata and data"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
]
dependencies = [
'jsonschema[format]~=4.26.0',
]
[project.optional-dependencies]
test = [
"flake8",
"unittest-xml-reporting>=4.0.0",
"lxml>=6.0.2",
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"pytest-xdist>=3.8.0",
]
[project.urls]
"Homepage" = "https://github.com/CCOMJHC/csbschema"
"Bug Tracker" = "https://github.com/CCOMJHC/csbschema/issues"
[project.scripts]
csbschema = "csbschema.command.__main__:main"
[tool.setuptools.dynamic]
version = {attr = "csbschema.__version__"}