This repository has been archived by the owner on Mar 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
99 lines (88 loc) · 2.18 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
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
96
97
98
99
[project]
name = 'asdf_time_schemas'
description = 'ASDF schemas for time'
readme = 'README.md'
requires-python = '>=3.8'
license = { file = 'LICENSE' }
authors = [{ name = 'The ASDF Developers', email = '[email protected]' }]
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Development Status :: 5 - Production/Stable',
]
dependencies = [
'asdf-standard >= 1.0.1',
'asdf-unit-schemas >= 0.1.0',
'importlib_resources >= 3; python_version<"3.9"',
]
dynamic = ['version']
[project.optional-dependencies]
docs = [
'tomli',
'sphinx',
'sphinx-asdf >= 0.1.3',
'sphinx-astropy',
'astropy >= 5.0.4',
'graphviz',
'matplotlib',
'docutils',
'sphinx-rtd-theme',
]
test = [
'asdf >= 2.8.0',
'asdf-astropy',
'scipy',
'pytest',
]
[project.urls]
'tracker' = 'https://github.com/asdf-format/asdf-time-schemas/issues'
'documentation' = 'https://asdf-time-schemas.readthedocs.io/en/stable'
'repository' = 'https://github.com/asdf-format/asdf-time-schemas'
[project.entry-points]
'asdf.resource_mappings' = { asdf_time_schemas = 'asdf_time_schemas.integration:get_resource_mappings' }
[build-system]
requires = [
"setuptools >=42",
"setuptools_scm[toml] >=3.4",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "src/asdf_time_schemas/_version.py"
[tool.setuptools]
packages = ["asdf_time_schemas", "asdf_time_schemas.resources"]
[tool.setuptools.package-data]
"asdf_time_schemas.resources" = ["resources/**/*.yaml"]
[tool.setuptools.package-dir]
'' = "src"
"asdf_time_schemas.resources" = "resources"
[tool.pytest.ini_options]
asdf_schema_root = 'resources/stsci.edu/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