LLNL / SSAPy

A Python package allowing for fast and precise orbital modeling.
https://software.llnl.gov/SSAPy/
MIT License
36 stars 8 forks source link

Swap setup.py and requirements.txt #13

Closed rusu24edward closed 2 months ago

rusu24edward commented 3 months ago

Installation pathway will be like so:

For users:

pip3 install ssapy

This will install all the dependencies from the setup.py.

For developers:

pip3 install -r requirements.txt
pip3 install -e . --no-deps

This will install all the dependencies out of the requirements file, and the next line will install an editable version of ssapy, used for development.

Suggested to assign @rusu24edward to this issue