mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-05-18 20:23:27 +02:00
Uploaded to pypi and added REAME.rst
This commit is contained in:
@@ -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
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
# dungeon-sheets
|
|
||||||
A tool to create character sheets for Dungeons and Dragons
|
|
||||||
+31
@@ -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.
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
certifi>=2018.1.18
|
||||||
|
fdfgen>=0.16
|
||||||
@@ -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': [
|
||||||
|
|||||||
Reference in New Issue
Block a user