https://github.com/astrocatalogs/astrocats
Raw File
Tip revision: e5ef42cafdbd9563f5aa1e8aa0acba3414e98db8 authored by lzkelley on 16 July 2018, 21:58:59 UTC
Dont set 'name' source parameter by default
Tip revision: e5ef42c
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