-
Notifications
You must be signed in to change notification settings - Fork 23
/
pyproject.toml
82 lines (71 loc) · 1.5 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
[project]
name = "stistools"
description = "Tools for STIS (Space Telescope Imaging Spectrograph)"
authors = [
{ name = "Paul Barrett" },
{ name = "Phil Hodge" },
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"astropy>=5.1",
"numpy",
"scipy",
"stsci.tools",
"pysiaf",
"astroquery",
]
dynamic = [
"version",
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.license]
file = "LICENSE.txt"
content-type = "text/plain"
[project.optional-dependencies]
test = [
"pytest",
]
docs = [
"ipython",
"sphinx",
"stsci_rtd_theme",
"sphinx_automodapi",
]
[project.scripts]
add_stis_s_region = "stistools.add_stis_s_region:call_main"
[build-system]
requires = [
"setuptools>=61.2",
"setuptools_scm[toml]>=3.4",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
namespaces = false
[tool.setuptools.package-data]
stistools = [
"pars/*",
"LICENSE.txt",
]
[tool.distutils.bdist_wheel]
universal = 1
[tool.pytest.ini_options]
minversion = "3"
norecursedirs = [
".eggs",
"build",
"docs/_build",
]
junit_family = "xunit2"
[tool.setuptools_scm]
write_to = "stistools/version.py"