forked from sherpa/sherpa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
213 lines (200 loc) · 4.72 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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
[build-system]
requires = [
"setuptools >= 64.0.0", # minimum for PEP 660 editable install
"numpy",
"tomli; python_version < '3.11'"
]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "sherpa"
description = "Modeling and fitting package for scientific data analysis"
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
authors = [
{ name = "Smithsonian Astrophysical Observatory / Chandra X-Ray Center", email = "[email protected]" }
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: C",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics"
]
requires-python = ">= 3.10"
dependencies = [
"numpy"
]
[project.optional-dependencies]
test = [
"pytest>=8.0"
]
# This is not a complete list, but that's because the doc build
# needs non-python packages such as pandoc and graphviz
doc = [
# code needed for the documentation
"sphinx>=5,<8",
"sphinx_rtd_theme>=3.0.0",
"sphinx-astropy",
"nbsphinx",
"ipykernel",
# code needed to run the documentation tests
"astropy",
"matplotlib",
"bokeh"
]
[project.urls]
Homepage = "https://cxc.harvard.edu/sherpa/"
Documentation = "https://sherpa.readthedocs.io/"
Repository = "https://github.com/sherpa/sherpa"
Issues = "https://github.com/sherpa/sherpa/issues"
[project.scripts]
sherpa_test = "sherpa:clitest"
sherpa_smoke = "sherpa:_smoke_cli"
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "sherpa/_version.py"
versionfile_build = "sherpa/_version.py"
tag_prefix = ""
parentdir_prefix = "sherpa-"
# Be explicit as we have src/ directories which complicate things.
# find sherpa -name __init__.py | sort | sed -e "s|/__init__.py||" -e "s|/|.|g"
# find sherpa -name tests
#
# Note that this has been set up to reduce the number of
# Python recognizes 'sherpa...' as an importable pachage[^1],
# messages from pip, rather than working out from first principles
# what to include.
#
[tool.setuptools]
packages = [
"sherpa.astro.datastack",
"sherpa.astro",
"sherpa.astro.io",
"sherpa.astro.models",
"sherpa.astro.optical",
"sherpa.astro.sim",
"sherpa.astro.ui",
"sherpa.astro.utils",
"sherpa.astro.xspec",
"sherpa.estmethods",
"sherpa.image",
"sherpa",
"sherpa.models",
"sherpa.optmethods",
"sherpa.plot",
"sherpa.sim",
"sherpa.stats",
"sherpa.ui",
"sherpa.utils",
"sherpa.estmethods.tests",
"sherpa.sim.tests",
"sherpa.tests",
"sherpa.image.tests",
"sherpa.astro.xspec.tests",
"sherpa.astro.sim.tests",
"sherpa.astro.tests",
"sherpa.astro.datastack.tests",
"sherpa.astro.datastack.tests.data",
"sherpa.astro.utils.tests",
"sherpa.astro.optical.tests",
"sherpa.astro.ui.tests",
"sherpa.astro.ui.tests.data",
"sherpa.astro.io.tests",
"sherpa.astro.models.tests",
"sherpa.utils.tests",
"sherpa.stats.tests",
"sherpa.ui.tests",
"sherpa.optmethods.tests",
"sherpa.models.tests",
"sherpa.plot.tests",
"sherpa.include",
"sherpa.include.sherpa",
"sherpa.include.sherpa.astro",
"sherpa.static.css"
]
# Install the tests as "package data".
# find sherpa -name tests | sort
#
# It's not clear how this interacts with tools.setuptools.packages.
#
[tool.setuptools.package-data]
"sherpa.astro.datastack" = [
"tests/data/*",
"tests/acis_bkg_model.py",
"tests/test_*py"
]
"sherpa.astro.io" = [
"tests/test_*py"
]
"sherpa.astro.models" = [
"tests/test_*py"
]
"sherpa.astro.optical" = [
"tests/test_*py"
]
"sherpa.astro.sim" = [
"tests/test_*py"
]
"sherpa.astro" = [
"tests/test_*py"
]
"sherpa.astro.ui" = [
"tests/data/*",
"tests/test_*py"
]
"sherpa.astro.utils" = [
"tests/test_*py"
]
"sherpa.astro.xspec" = [
"tests/test_*py"
]
"sherpa.estmethods" = [
"tests/test_*py"
]
"sherpa.image" = [
"tests/test_*py"
]
"sherpa.models" = [
"tests/test_*py"
]
"sherpa.optmethods" = [
"tests/test_*py",
"tests/*.hh", # do we need this?
"tests/_tstoptfct.cc" # do we need this
]
"sherpa.plot" = [
"tests/test_*py"
]
"sherpa.sim" = [
"tests/test_*py"
]
"sherpa.stats" = [
"tests/test_*py"
]
"sherpa" = [
"tests/test_*py",
"tests/a.lis",
"tests/b.lis",
"include/sherpa/*.hh",
"include/sherpa/astro/*.hh",
"static/css/*css",
"sherpa.rc",
"sherpa-standalone.rc"
]
"sherpa.ui" = [
"tests/test_*py"
]
"sherpa.utils" = [
"tests/test_*py"
]
# Remove the src/ directories
#
[tool.setuptools.exclude-package-data]
"*" = ["src/*"]
"sherpa.include.sherpa" = ["MersenneTwister.h"]