Basic implementation, can fill in some attributes on the character sheet.

This commit is contained in:
Mark Wolfman
2018-03-25 21:08:48 -05:00
parent e823e71fdd
commit 7862d14c9d
14 changed files with 372 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/usr/bin/env python
from distutils.core import setup
setup(name='dungeonsheets',
version='0.1dev',
description='Dungeons and Dragons 5e Character Tools',
author='Mark Wolfman',
author_email='canismarko@gmail.com',
url='',
packages=['dungeonsheets'],
)