-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
48 lines (40 loc) · 1.4 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
# pyproject.toml
[build-system]
requires = ["wheel", "hatchling"]
build-backend = "hatchling.build"
[project]
name = "mivot-validator"
dynamic = ["version"]
description = "Tools for validating VOTable annotated with MIVOT and to generate MIVOT snippets"
readme = "README.md"
authors = [{ name = "Laurent Michel", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["ivoa", "data model", "votable", "annotation", "mivot"]
dependencies = [
"xmlschema",
"xmltodict",
"astropy",
]
requires-python = ">=3.6"
[tool.hatch.version]
path = "mivot_validator/version.py"
[project.optional-dependencies]
dev = ["pip-tools", "pytest"]
[project.urls]
Homepage = "https://github.com/ivoa/mivot-validator"
[project.scripts]
mivot-validate = "mivot_validator.launchers.votable_launcher:main"
mivot-mapping-validate = "mivot_validator.launchers.mivot_launcher:main"
types-and-roles-validate = "mivot_validator.launchers.typesandroles_launcher:main"
mivot-instance-validate = "mivot_validator.launchers.instance_checking_launcher:main"
mivot-snippet-model = "mivot_validator.launchers.model_snippets_launcher:main"
mivot-snippet-instance = "mivot_validator.launchers.instance_snippet_launcher:main"
[tool.pytest.ini_options]
pythonpath = [
"."
]