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