mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-05-19 04:33:26 +02:00
9 lines
203 B
Python
9 lines
203 B
Python
from . import weapons, character, features, race, background, spells
|
|
|
|
import os
|
|
|
|
def read(fname):
|
|
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
|
|
|
__version__ = read('../VERSION')
|