Skip to content

Commit

Permalink
Add README properly to package
Browse files Browse the repository at this point in the history
- Still learning packaging, bear with the amount of changes
  • Loading branch information
oldmantaiter committed Jul 26, 2020
1 parent ca13039 commit 1d6ed0c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pydkron/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.2.3'
__version__ = '0.2.4'
7 changes: 7 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import pathlib
import os
import re
import sys
Expand All @@ -16,10 +17,16 @@
'six'
]

HERE = pathlib.Path(__file__).parent

README = (HERE / "README.md").read_text()

setup(
name='pydkron',
version=VERSION,
description='pydkron: Python Client for Dkron',
long_description=README,
long_description_content_type="text/markdown",
keywords='dkron',
author='Tait Clarridge',
author_email='tait@clarridge.ca',
Expand Down

0 comments on commit 1d6ed0c

Please sign in to comment.