https://github.com/astrocatalogs/astrocats
Raw File
Tip revision: 9dace5dbf4bdb517d2610b4b492bb27b448bcb57 authored by lzkelley on 27 July 2018, 16:56:39 UTC
Bump version to 0.3.41
Tip revision: 9dace5d
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