https://github.com/astrocatalogs/astrocats
Raw File
Tip revision: 11abc3131c6366ecd23964369e55ff264add7805 authored by James Guillochon on 19 September 2018, 01:17:29 UTC
Merge pull request #92 from astrocatalogs/airmass-photometry
Tip revision: 11abc31
DEVELOP.md
# AstroCats Development README #

## Structure and Code Style ##

Unless otherwise noted, everything should be
[PEP8](https://www.python.org/dev/peps/pep-0008) compliant, with 79 characters
maximum per line (we ignore the 72 character docstring maximum).  Please make
variable names descriptive, and add comments describing *everything*.  Avoid
the use of literals whenever possible - using/defining/documenting constants
appropriately.

## Naming Conventions ##
-   Directories: `lowercase`,  
-   Files: `lowercase`  
-   Classes: `TitleCase`  
-   Variables: `lower_case` (i.e. underscores for breaks/spaces)
    -   Constants: `UPPER_CASE`
back to top