-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
67 lines (59 loc) · 1.69 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "reducer"
dynamic = ["version"]
description = "Process FITS files"
readme = "README.rst"
license = "BSD-3-clause"
authors = [
{ name = "Matt Craig", email = "[email protected]" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Astronomy",
]
dependencies = [
"astropy>=4.0",
"ccdproc>=2",
"dask",
"ipywidgets >=7.5",
"matplotlib",
"msumastro>=1",
"numpy",
"scikit-image",
"scipy",
"jupyter-app-launcher",
"ipyautoui",
]
[project.optional-dependencies]
docs = [
"numpydoc",
"sphinx-argparse",
"sphinx_rtd_theme",
]
[project.scripts]
reducer = "reducer:main"
[project.urls]
Homepage = "http://reducer.readthedocs.org"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "reducer/_version.py"
[tool.hatch.build.targets.sdist]
include = [
"/reducer",
".jp_app_launcher_reducer.yaml",
]
[tool.hatch.build.targets.wheel.shared-data]
# This section determines what data files are included in the wheel
# and where they should eventually be installed in the user's environment.
# "docs/_static/stellarphot-logo.svg" = "share/jupyter/stellarphot/stellarphot-logo.svg"
# This includes the notebooks used in the launcher
"reducer/reducer-template.ipynb" = "share/jupyter/reducer/reducer-template.ipynb"
".jp_app_launcher_reducer.yaml" = "share/jupyter/jupyter_app_launcher/jp_app_launcher_reducer.yaml"