-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from dirac-institute/issue/12/more-init-files
Add documentation and __init__ files to make auto importing easier.
- Loading branch information
Showing
9 changed files
with
36 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,15 @@ | ||
.. sinusoidal documentation main file. | ||
You can adapt this file completely to your liking, but it should at least | ||
contain the root `toctree` directive. | ||
Welcome to Sorcha's community utilities documentation! | ||
======================================================================================== | ||
|
||
====================================================== | ||
|
||
Sorcha Community Utils is a collection of plugins for Sorcha that can be used to | ||
model changes to the magnitude of objects in the solar system simulation. | ||
|
||
.. toctree:: | ||
:hidden: | ||
|
||
Home page <self> | ||
Contributing <contributing> | ||
Usage <usage> | ||
Community Modules <community_modules> | ||
Notebooks <notebooks> | ||
Contributing <contributing> | ||
API Reference <autoapi/index> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
Using Sorcha Community Utils | ||
============================ | ||
|
||
In order to use the community utilities, first install this package in your | ||
virtual environment. | ||
|
||
.. code:: bash | ||
>> pip install sorcha-community-utils | ||
Once the ``sorcha-community-utils`` is installed, Sorcha will automatically detect | ||
the available plugins and make them available during processing. | ||
|
||
To use one of the plugins from the community utilities, simply add the unique | ||
name of the plugin to the configuration file provided to Sorcha, and provide the | ||
complex parameters file on the command line. | ||
|
||
For more information about running Sorcha, the configuration file, and providing | ||
arguments on the command line, see the documentation available | ||
`here <https://sorcha.readthedocs.io/en/latest/gettingstarted.html#setting-up-sorcha-s-configuration-file>`_. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
__all__ = [ | ||
"activity", | ||
"lightcurve", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from .lsst_comet import lsst_comet_activity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from .sinusoidal import sinusoidal_lightcurve |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters