mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-05-19 04:33:26 +02:00
19 lines
461 B
Python
19 lines
461 B
Python
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup
|
|
# from setuptools 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'],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'makesheets = dungeonsheets.make_sheets:main'
|
|
]
|
|
},
|
|
)
|