Files
dungeon-sheets/dungeonsheets/__init__.py
T
Mark Wolfman 30369ce1d4 Ran flake8 and black linters, and other cleanup-related fixes.
Project now passes flake8 and black linter (also including more rst
cleanup). Moved latex related things to dedicated ``latex.py`` module,
and removed the ``makesheets -dF`` call from travis.
2021-04-16 11:10:17 -05:00

23 lines
406 B
Python

__all__ = (
"__version__",
"Character",
"weapons",
"features",
"mechanics",
"race",
"background",
"spells",
)
from dungeonsheets import background, features, race, spells, weapons, mechanics
from dungeonsheets.character import Character
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
__version__ = read("../VERSION")