Skip to content

Commit

Permalink
Merge pull request #498 from othalla/fix_setup
Browse files Browse the repository at this point in the history
Fix setup.py to use new markdown readme & changelog files
  • Loading branch information
alexjfisher committed May 13, 2019
2 parents 2e09d72 + 2e6f464 commit e8401bc
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
import sys
import os
import codecs
import re
from setuptools.command.test import test as TestCommand
from setuptools import setup, find_packages
from puppetboard.version import __version__


with codecs.open('README.rst', encoding='utf-8') as f:
with codecs.open('README.md', encoding='utf-8') as f:
README = f.read()

with codecs.open('CHANGELOG.rst', encoding='utf-8') as f:
with codecs.open('CHANGELOG.md', encoding='utf-8') as f:
CHANGELOG = f.read()


Expand Down

0 comments on commit e8401bc

Please sign in to comment.