Uploaded to pypi and added REAME.rst

This commit is contained in:
Mark Wolfman
2018-04-01 01:14:58 -05:00
parent dc331dbbf4
commit 9fd2747eb8
6 changed files with 52 additions and 6 deletions
+12
View File
@@ -0,0 +1,12 @@
# file GENERATED by distutils, do NOT edit
setup.cfg
setup.py
dungeonsheets/__init__.py
dungeonsheets/character.py
dungeonsheets/dice.py
dungeonsheets/exceptions.py
dungeonsheets/make_sheets.py
dungeonsheets/race.py
dungeonsheets/spells.py
dungeonsheets/stats.py
dungeonsheets/weapons.py
-2
View File
@@ -1,2 +0,0 @@
# dungeon-sheets
A tool to create character sheets for Dungeons and Dragons
+31
View File
@@ -0,0 +1,31 @@
================
Dungeon Sheets
================
A tool to create character sheets for Dungeons and Dragons.
Installation
============
.. code:: bash
$ pip install dungeonsheets
Usage
=====
Each character is described by a python file, which gives many
attributes associated with the character. See examples_ for more
information about the character descriptions.
.. _examples:
The PDF's can then be generated using the ``makesheets`` command.
.. code:: bash
$ cd examples
$ makesheets
dungeon-sheets contains definitions for standard weapons and spells,
so attack bonuses and damage can be calculated automatically.
+2
View File
@@ -0,0 +1,2 @@
certifi>=2018.1.18
fdfgen>=0.16
+2
View File
@@ -0,0 +1,2 @@
[metadata]
description-file = README.rst
+5 -4
View File
@@ -1,14 +1,15 @@
#!/usr/bin/env python #!/usr/bin/env python
from distutils.core import setup # from distutils.core import setup
# from setuptools import setup from setuptools import setup
setup(name='dungeonsheets', setup(name='dungeonsheets',
version='0.1dev', version='0.1dev1',
description='Dungeons and Dragons 5e Character Tools', description='Dungeons and Dragons 5e Character Tools',
author='Mark Wolfman', author='Mark Wolfman',
author_email='canismarko@gmail.com', author_email='canismarko@gmail.com',
url='', url='https://github.com/canismarko/dungeon-sheets',
download_url = 'https://github.com/canismarko/dungeon-sheets/archive/master.zip',
packages=['dungeonsheets'], packages=['dungeonsheets'],
entry_points={ entry_points={
'console_scripts': [ 'console_scripts': [