-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (70 loc) · 1.92 KB
/
pyproject.toml
File metadata and controls
76 lines (70 loc) · 1.92 KB
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
[build-system]
requires = ["hatchling", "hatch-requirements-txt", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "astrophot"
dynamic = [
"version"
]
authors = [
{ name="Connor Stone", email="connorstone628@gmail.com" },
]
description = "A fast, flexible, automated, and differentiable astronomical image 2D forward modelling tool for precise parallel multi-wavelength photometry."
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
keywords = [
"astrophot",
"photometry",
"astronomy",
"scientific computing",
"astrophysics",
"differentiable programming",
"pytorch"
]
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3"
]
dependencies=[
"astropy>=5.3",
"caskade~=1.0.0",
"h5py>=3.8.0",
"matplotlib>=3.7",
"numpy>=1.24.0,<2.0.0",
"scipy>=1.10.0",
"torch>=2.0.0",
"tqdm>=4.65.0",
]
[project.urls]
Homepage = "https://autostronomy.github.io/AstroPhot/"
Documentation = "https://autostronomy.github.io/AstroPhot/"
Repository = "https://github.com/Autostronomy/AstroPhot"
Issues = "https://github.com/Autostronomy/AstroPhot/issues"
[project.optional-dependencies]
dev = [
"pre-commit",
"nbval",
"nbconvert",
"graphviz",
"ipywidgets",
"jupyter-book<2.0",
"matplotlib",
"photutils",
"scikit-image",
"caustics",
"pyro-ppl>=1.8.0",
"emcee",
"corner",
"jax<=0.7.0",
"pyvo"
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "astrophot/_version.py"
[tool.hatch.version.raw-options]
local_scheme = "no-local-version"