-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (83 loc) · 2.24 KB
/
pyproject.toml
File metadata and controls
92 lines (83 loc) · 2.24 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[project]
name = "fitsmap"
dynamic = ["version"]
authors = [
{ name = "Ryan Hausen", email = "rhausen@jhu.edu" },
{ name = "Brant Robertson", email = "brant@ucsc.edu"}
]
description = "A Simple, Lightweight Tool For Displaying Interactive Astronomical Image and Catalog Data"
readme = "README.rst"
license = "MIT"
requires-python = ">=3.10"
dependencies = [
"astropy>=6.0.1",
"cbor2>=5.7.0",
"click>=8.1.8",
"mapbox_vector_tile>=2.2.0",
"matplotlib>=3.9.4",
"numpy>=1.26.4",
"pillow>=11.3.0",
"protobuf>=6.32.0",
"ray>=2.49.0",
"shapely>=2.0.7", # this might need to be fixed
"scikit-image>=0.24.0",
"tqdm>=4.67.1",
"jinja2>=3.1.6",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Visualization",
"Operating System :: OS Independent",
]
[project.scripts]
fitsmap = "fitsmap.__main__:cli"
[build-system]
requires = ["setuptools>=80.9.0", "setuptools_scm[toml]>=9.2.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
zip-safe = false
include-package-data = true
[tool.setuptools.packages.find]
exclude = ["fitsmap.tests*", "fitsmap/tests*"]
[tool.setuptools_scm]
write_to = "fitsmap/_version.py"
fallback_version = "0.0.0"
[tool.bandit]
exclude_dirs = ["fitsmap/tests"]
[dependency-groups]
dev = [
"bandit==1.9.3",
"build==1.4.0",
"debugpy>=1.8.0",
"nbsphinx==0.9.8",
"pytest==9.0.3",
"pytest-cov==7.0.0",
"setuptools==80.10.2",
"setuptools-scm[toml]==9.2.2",
"sphinx==8.1.3",
"sphinx-automodapi==0.22.0",
"sphinx-book-theme==1.1.4",
"sphinx-rtd-theme==3.1.0",
]
prd = [
"astropy==6.1.7",
"cbor2==5.9.0",
"click==8.1.8",
"mapbox_vector_tile==2.2.0",
"matplotlib==3.10.8",
"numpy==1.26.4",
"pillow==12.2.0",
"protobuf==6.33.5",
"ray==2.55.0",
"shapely==2.1.2",
"scikit-image==0.25.2",
"tqdm==4.67.3",
]