-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
172 lines (162 loc) · 5.58 KB
/
pyproject.toml
File metadata and controls
172 lines (162 loc) · 5.58 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
[project]
name = "hyrax"
license = "MIT"
license-files = ["LICENSE"]
readme = "README.md"
authors = [
{ name = "LINCC Frameworks", email = "mtauraso@uw.edu" }
]
description = """
A low-code solution for rapid experimentation with machine learning in astronomy. Hyrax is an extensible
platform that handles much of the boilerplate code that is often required for a machine learning project
in astronomy.
"""
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
]
dynamic = ["version"]
requires-python = ">=3.11"
dependencies = [
"astropy", # Used to load fits files of sources to query HSC cutout server
# Pin to the current version of pytorch ignite so workarounds to
# https://github.com/pytorch/ignite/issues/3372 function correctly
# while allowing us to release packages that don't depend on dev versions
# of pytorch-ignite.
"pytorch-ignite <= 0.5.4", # Used for distributed training, logging, etc.
"more-itertools", # Used to work around the issue in pytorch-ignite above
"toml", # Used to load configuration files as dictionaries
"tomlkit", # Used to load configuration files as dictionaries and retain comments
"torch", # Used for CNN model and in train.py
"torchvision", # Used in hsc data loader, example autoencoder, and CNN model data set
"tensorboardX", # Used to log training metrics
"tensorboard", # Used to log training metrics
"schwimmbad", # Used to speedup hsc data loader file scans
"chromadb > 1.0", # Used for similarity search
"holoviews", # Used in Holoviews visualization prototype
"bokeh", # Used in Holoviews visualization prototype
"jupyter_bokeh", # Used in Holoviews visualization prototype
"datashader", # Used in Holoviews visualization prototype
"pandas", # Used in Holoviews visualization prototype
"numpy", # Used in Holoviews visualization prototype
"scipy", # Used in Holoviews visualization prototype
"cython", # Used in Holoviews visualization prototype
"mlflow >= 3.7", # Used to log training metrics and compare models
"umap-learn", # Used to map latent spaces down to 2d
"pooch", # Used to download data files
"pydantic>=2.10.0,<3.0", # Used for typed configuration schemas
"onnx", # Used to export models to ONNX format
"onnxruntime", # Used to run ONNX models
"onnxscript", # Used to convert PyTorch models to ONNX format
"plotly", # Used in 3d visualization
"psutil", # Used for memory monitoring
"tqdm", # Used to show progress bars
"datasets", # Used by MultimodalUniverseDataset
"qdrant-client", # Vector database for similarity search
"colorama", # Used to color terminal output
# Pin to before 0.30.0 because version 0.30.0 does not support NaN values anymore
# This issue is NOT noted in release notes (https://github.com/lancedb/lancedb/releases/tag/python-v0.30.0)
# We have filed this bug: https://github.com/lancedb/lancedb/issues/3153
"lancedb < 0.30.0", # Used for columnar storage of inference results
"pyarrow", # Used by lancedb for data interchange
"pylance", # Used by lancedb for Lance dataset access
]
[project.scripts]
hyrax = "hyrax_cli.main:main"
[project.urls]
"Source Code" = "https://github.com/lincc-frameworks/hyrax"
# On a mac, install optional dependencies with `pip install '.[dev]'` (include the single quotes)
[project.optional-dependencies]
examples = [
]
dev = [
"asv[virtualenv]==0.6.5", # Used to compute performance benchmarks
"jupyter", # Clears output from Jupyter notebooks
"matplotlib", # For example notebooks
"pre-commit", # Used to run checks before finalizing a git commit
"pytest",
"pytest-cov", # Used to report total code coverage
"pytest-env", # Used to set environment variables in testing
"pytest-xdist", # Used to parallelize unit tests
"ruff", # Used for static linting of files
"sphinx",
"sphinx-autoapi",
"sphinx-book-theme",
"sphinx-design",
"nbsphinx",
"sphinx-tabs",
"sphinx-copybutton",
"sphinx-togglebutton",
"sphinx-rtd-theme",
"lsdb", # Used to test lsst dataset classes
]
[build-system]
requires = [
"setuptools>=62", # Used to build and package the Python project
"setuptools_scm>=6.2", # Gets release version from git. Makes it available programmatically
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "src/hyrax/_version.py"
[tool.pytest.ini_options]
testpaths = [
"tests",
"src",
"docs",
]
addopts = "--doctest-modules --doctest-glob=*.rst"
env = [
"TQDM_DISABLE=1",
]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]
[tool.ruff]
line-length = 110
target-version = "py311"
[tool.ruff.lint]
select = [
# pycodestyle
"E",
"W",
# Pyflakes
"F",
# pep8-naming
"N",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
# docstrings
"D101",
"D102",
"D103",
"D106",
"D206",
"D207",
"D208",
"D300",
"D417",
"D419",
# Numpy v2.0 compatibility
"NPY201",
]
ignore = [
"UP006", # Allow non standard library generics in type hints
"UP007", # Allow Union in type hints
"SIM114", # Allow if with same arms
"B028", # Allow default warning level
"SIM117", # Allow nested with
"UP015", # Allow redundant open parameters
"UP028", # Allow yield in for loop
"B905", # Allow zip without `strict`
]
[tool.coverage.run]
omit=["src/hyrax/_version.py"]