Skip to content

Commit

Permalink
Merge pull request #5 from tvwenger/installation
Browse files Browse the repository at this point in the history
  • Loading branch information
changgoo authored Sep 17, 2024
2 parents 9d1a181 + 84be165 commit 9e57031
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
git clone [email protected]:PrincetonUniversity/astro-tigress.git
cd astro-tigress
conda create --name astro-tigress python=3.8 poetry jupyterlab xarray
conda create --name astro-tigress python=3.8 pip
conda activate astro-tigress
poetry install
pip install .
python prepare_tutorial.py
15 changes: 15 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
from setuptools import setup

with open("requirements.txt") as f:
install_requires = f.read().splitlines()

setup(
name="astro-tigress",
version="1.0",
description="",
author="",
author_email="",
packages=["astro_tigress"],
install_requires=install_requires,
package_data={"astro_tigress": ["coolftn.txt"]},
)

0 comments on commit 9e57031

Please sign in to comment.