Skip to content

Commit

Permalink
Whoops! I forgot to remove (and lint) some code!
Browse files Browse the repository at this point in the history
  • Loading branch information
saxbophone committed Oct 31, 2018
1 parent 8bcbe39 commit b0536a5
Showing 1 changed file with 3 additions and 11 deletions.
14 changes: 3 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,6 @@
from setuptools import find_packages, setup


def readme(filepath):
"""
Utility function to convert the README file to RST format and return it.
"""
return convert_text(
open(os.path.join(os.path.dirname(__file__), filepath)).read(),
'rst', format='md'
)


def parse_requirements(filepath):
""" load requirements from a pip requirements file """
lineiter = (line.strip() for line in open(filepath))
Expand All @@ -49,7 +39,9 @@ def retrieve_deps(filepath):
description=(
'Converts symbols from any number base to any other number base'
),
long_description=open(os.path.join(os.path.dirname(__file__), 'README.md')).read(),
long_description=open(
os.path.join(os.path.dirname(__file__), 'README.md')
).read(),
long_description_content_type='text/markdown',
url='https://github.com/saxbophone/basest-python',
author='Joshua Saxby',
Expand Down

0 comments on commit b0536a5

Please sign in to comment.