https://github.com/astrocatalogs/astrocats
Raw File
Tip revision: f2cc25291889d43d8a08f16fe16d2a6249116225 authored by lzkelley on 15 August 2018, 19:50:48 UTC
Bump to v0.4.0
Tip revision: f2cc252
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