-
Notifications
You must be signed in to change notification settings - Fork 31
/
pyproject.toml
88 lines (79 loc) · 1.85 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
[project]
name = "pysiaf"
description = "Handling of Science Instrument Aperture Files (SIAF) for space telescopes"
authors = [
{ name = "STScI", email = "[email protected]" },
]
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>=4.3.1",
"lxml>=4.6.4",
"matplotlib>=3.4.3",
"numpy>=1.21.4",
"openpyxl>=3.0.9",
"requests>=2.26.0",
"scipy>=1.7.2",
]
dynamic = [
"version",
]
requires-python = ">=3.10"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.license]
file = "LICENSE.md"
content-type = "text/plain"
[project.urls]
documentation = "https://pysiaf.readthedocs.io/en/latest/"
repository = "https://github.com/spacetelescope/pysiaf"
[project.optional-dependencies]
test = [
"pytest",
]
docs = [
"stsci-rtd-theme",
"sphinx-rtd-theme>=1.3.0",
"sphinx-automodapi",
"sphinx>=7.2.5",
"numpy",
"numpydoc>=1.1.0",
"matplotlib",
"scipy",
"tomli; python_version<\"3.11\"",
]
[build-system]
requires = [
"setuptools>=61.2",
"setuptools_scm[toml]>=3.4",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "pysiaf/version.py"
[tool.setuptools.packages.find]
[tool.setuptools.package-data]
pysiaf = [
"prd_data/HST/*",
"prd_data/JWST/*/*/*/*.xlsx",
"prd_data/JWST/*/*/*/*.xml",
"pre_delivery_data/*/*.*",
"source_data/*/*/*.txt",
"source_data/*/*.txt",
"source_data/*.txt",
"tests/test_data/*/*/*/*.fits",
"tests/test_data/*/*/*/*.txt",
]
[tool.pytest.ini_options]
minversion = 3.0
norecursedirs = [
"build",
"docs/_build",
]