-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (17 loc) · 707 Bytes
/
setup.py
File metadata and controls
20 lines (17 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"""Setup configuration for TARTS (Neural Active Optics System) package.
This setup script configures the installation of the TARTS package, which implements
a deep learning-based active optics system for the LSST telescope. The package provides
neural network models for processing out-of-focus donut images to predict wavefront
aberrations and enable real-time telescope optics correction.
"""
from setuptools import setup, find_packages
setup(
name="tarts",
version="0.0.0a7",
packages=find_packages(),
install_requires=[],
author="Peter Xiangyuan Ma",
author_email="peter_ma@berkeley.edu",
description="Neural Active Optics System for LSST telescope",
license="MIT",
)