-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
163 lines (142 loc) · 4.03 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
[build-system]
requires = [
"setuptools>=62.1",
"setuptools_scm[toml]>=6.2",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "dkist"
description = "DKIST User Tools"
requires-python = ">=3.10"
readme = { file = "README.rst", content-type = "text/x-rst" }
license = { file = "licenses/LICENSE.rst" }
authors = [
{ name = "NSO / AURA", email = "[email protected]" },
]
dependencies = [
"aiohttp>=3.8",
# Provide minimum deps for all asdf packages used to generate or read asdf
# files so that we test with these minimums and also generate asdf's with
# them
# Some of these schema dependencies are minimums because we generated asdf
# files with them unpinned so they are now required to read generated asdf
# files.
"asdf>=2.11.2",
"asdf-astropy>=0.2.0",
"asdf-coordinates-schemas>=0.1.0",
"asdf-standard>=1.0.3",
"asdf-transform-schemas>=0.3.0",
"asdf-wcs-schemas>=0.3.0",
"astropy>=5.3",
"dask[array]>=2021.8.0",
"globus-sdk>=3.0",
"gwcs>=0.19.0",
"matplotlib>=3.5",
"ndcube[plotting,reproject]>=2.0",
"numpy>=1.22",
"parfive[ftp]>=1.5",
"platformdirs>=3.0",
"sunpy[net,asdf]>=4.0.7",
"tqdm>=4.63",
]
dynamic = ["version"]
[project.optional-dependencies]
tests = [
"pytest",
"pytest-doctestplus",
"pytest-cov",
"pytest-remotedata",
"pytest-mock",
"pytest-mpl",
"pytest-httpserver",
"pytest-filter-subpackage",
"pytest-benchmark<5",
"pytest-xdist",
"hypothesis",
"tox",
"pydot",
]
docs = [
"sphinx",
"sphinx-automodapi",
"packaging",
"sphinx-astropy",
"sphinx-gallery",
"sphinx-changelog",
"pytest",
"sphinx_autodoc_typehints",
"dkist-sphinx-theme>=1.1.2",
"sphinx-design",
"myst-nb",
"ipywidgets",
"accessible-pygments",
"reproject[all]",
]
[project.urls]
repository = "https://github.com/DKISTDC/dkist"
[project.entry-points]
'asdf.extensions' = {dkist = 'dkist.io.asdf.entry_points:get_extensions'}
'asdf.resource_mappings' = {dkist = 'dkist.io.asdf.entry_points:get_resource_mappings'}
[tool.setuptools]
zip-safe = false
include-package-data = true
[tool.setuptools.packages.find]
include = ["dkist*"]
exclude = ["dkist._dev*"]
[tool.setuptools_scm]
write_to = "dkist/_version.py"
[tool.gilesbot]
[ tool.gilesbot.pull_requests ]
enabled = true
[ tool.gilesbot.towncrier_changelog ]
enabled = true
verify_pr_number = true
changelog_skip_label = "no changelog"
help_url = "https://github.com/DKISTDC/dkist/changelog/README.rst"
[ tool.gilesbot.milestones ]
enabled = false
[ tool.gilesbot.circleci_artifacts]
enabled = true
[ tool.gilesbot.circleci_artifacts.figure_report]
url = "py312-figure/figure_test_images/fig_comparison.html"
message = "Click details to see the figure test comparisons, for py312-figure."
report_on_fail = true
[ tool.gilesbot.circleci_artifacts.figure_devdeps_report]
url = "py312-figure-devdeps/figure_test_images/fig_comparison.html"
message = "Click details to see the figure test comparisons, for py312-figure-devdeps."
report_on_fail = true
[tool.towncrier]
package = "dkist"
filename = "CHANGELOG.rst"
directory = "changelog/"
issue_format = "`#{issue} <https://github.com/DKISTDC/dkist/pull/{issue}>`_"
title_format = "{version} ({project_date})"
[[tool.towncrier.type]]
directory = "breaking"
name = "Backwards Incompatible Changes"
showcontent = true
[[tool.towncrier.type]]
directory = "api"
name = "API Changes"
showcontent = true
[[tool.towncrier.type]]
directory = "removal"
name = "Deprecations and Removals"
showcontent = true
[[tool.towncrier.type]]
directory = "feature"
name = "Features"
showcontent = true
[[tool.towncrier.type]]
directory = "bugfix"
name = "Bug Fixes"
showcontent = true
[[tool.towncrier.type]]
directory = "doc"
name = "Improved Documentation"
showcontent = true
[[tool.towncrier.type]]
directory = "trivial"
name = "Trivial/Internal Changes"
showcontent = true