Add module-level information

A docstring has been added describing the module's purpose.

__all__ has been added. It is limited to the declarations needed to use
Solve().

The author's name has been added.
This commit is contained in:
Jeremy Saklad 2021-06-18 15:28:56 -05:00
parent aee575848b
commit a8b835aba3
Signed by: Jeremy Saklad
GPG Key ID: 9CA2149583EDBF84
1 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,8 @@
"""Use constraint programming to devise the optimal skeleton at the Bone Market in Fallen London."""
__all__ = ['Declaration', 'Fluctuation', 'OccasionalBuyer', 'Solve']
__author__ = "Jeremy Saklad"
import argparse
import curses
from enum import Enum