mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-05-19 04:33:26 +02:00
30369ce1d4
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.
23 lines
406 B
Python
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")
|