-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
48 lines (39 loc) · 1.15 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "vo-models"
version = "0.4.2"
authors = [
{name = "Joshua Fraustro", email="[email protected]"},
{name = "MAST Archive Developers", email="[email protected]"}
]
description = "Pydantic data models for IVOA protocols"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"pydantic>2",
"pydantic-xml[lxml]>=2.6.0",
]
classifiers = [
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
]
keywords = [
"ivoa",
"pydantic",
"pydantic-xml",
]
[project.optional-dependencies]
test = ["pytest", "pytest-cov"]
dev = ["pylint", "ruff", "pre-commit"]
docs = ["sphinx", "sphinx_design", "furo", "sphinx-copybutton", "toml", "sphinx_autodoc_typehints"]
[project.urls]
Homepage = "https://github.com/spacetelescope/vo-models"
Issues = "https://github.com/spacetelescope/vo-models/issues"
[tool.setuptools.package-data]
"vo_models" = ["py.typed"]
[tool.ruff]
line-length = 120
extend-exclude = ["docs/conf.py"]