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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
[project]
name = 'asdf_coordinates_schemas'
description = 'ASDF schemas for coordinates'
readme = 'README.md'
requires-python = '>=3.9'
license-files = ['LICENSE']
authors = [{ name = 'The ASDF Developers', email = 'help@stsci.edu' }]
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Astronomy',
]
dependencies = [
'asdf >= 2.12.1',
'asdf-standard >= 1.1.0',
]
dynamic = ['version']
[project.optional-dependencies]
docs = [
'tomli; python_version < "3.11"',
'sphinx',
'sphinx-asdf >= 0.1.3',
'sphinx-astropy',
'astropy >= 5.0.4',
'graphviz',
'matplotlib',
'docutils',
'furo',
]
test = [
'pytest',
'asdf-astropy >= 0.2.0'
]
[project.urls]
'tracker' = 'https://github.com/asdf-format/asdf-coordinates-schemas/issues'
'documentation' = 'https://www.asdf-format.org/projects/asdf-coordinates-schemas/en/latest/'
'repository' = 'https://github.com/asdf-format/asdf-coordinates-schemas'
[project.entry-points]
'asdf.resource_mappings' = { asdf_coordinates_schemas = 'asdf_coordinates_schemas.integration:get_resource_mappings' }
[build-system]
requires = [
"setuptools>77",
"setuptools_scm[toml]>=3.4",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "src/asdf_coordinates_schemas/_version.py"
[tool.setuptools]
packages = ["asdf_coordinates_schemas", "asdf_coordinates_schemas.resources"]
[tool.setuptools.package-data]
"asdf_coordinates_schemas.resources" = ["resources/**/*.yaml"]
[tool.setuptools.package-dir]
'' = "src"
"asdf_coordinates_schemas.resources" = "resources"
[tool.pytest.ini_options]
asdf_schema_root = 'resources/schemas'
asdf_schema_tests_enabled = 'true'
asdf_schema_ignore_unrecognized_tag = 'true'
testpaths = """
tests
resources
"""
addopts = '--color=yes'
[tool.black]
line-length = 120
force-exclude = '''
^/(
(
\.eggs
| \.git
| \.pytest_cache
| \.tox
| build
| dist
)/
)
'''
[tool.isort]
profile = "black"
filter_files = true
line_length = 120
|