-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (54 loc) · 1.73 KB
/
pyproject.toml
File metadata and controls
63 lines (54 loc) · 1.73 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "AegeanTools"
license = {file = "LICENSE"}
authors = [{name="Paul Hancock", email="Mr.Paul.Hancock@gmail.com"}]
dynamic = ["version", "readme"]
requires-python=">=3.10"
dependencies = [
"scipy>=1.11",
"tqdm>=4.67",
"numpy>=2.0",
"astropy>=6.1",
"healpy >=1.18",
"lmfit>=1.3",
"scikit-learn>=1.7",
"configargparse>=1.7"
]
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"License :: OSI Approved :: Academic Free License (AFL)",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
keywords=["image processing", "radioastronomy"]
[project.scripts]
aegean = "AegeanTools.CLI.aegean:main"
BANE = "AegeanTools.CLI.BANE:main"
SR6 = "AegeanTools.CLI.SR6:main"
AeRes = "AegeanTools.CLI.AeRes:main"
MIMAS = "AegeanTools.CLI.MIMAS:main"
AeReg = "AegeanTools.CLI.AeReg:main"
[project.urls]
Repository = "https://github.com/PaulHancock/Aegean"
Documentation = "http://aegeantools.rtfd.io/"
Issues = "https://github.com/PaulHancock/Aegean/issues"
Changelog = "https://github.com/PaulHancock/Aegean/blob/main/CHANGELOG.md"
[project.optional-dependencies]
fast = ['numba>=0.60.0']
faster = ["AegeanTools[fast]","mpi4py>=4.1"]
dev = ['pytest']
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["AegeanTools*"]
[tool.setuptools.package-data]
AegeanTools = ["MOC.fits"]
[tool.setuptools.dynamic]
readme = {file = "README.md", content-type = "text/markdown"}