Skip to content

Commit

Permalink
updated setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
FlyingBird95 committed Mar 19, 2018
1 parent 5b1eb2b commit ed6c940
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,19 @@


def desc():
info = open('README.md').read()
try:
return info + '\n\n' + open('CHANGELOG.rst').read()
except IOError:
return info
info = ''
with open('README.md', encoding='utf-8') as readme:
info = readme.read()
with open('CHANGELOG.rst', encoding='utf-8') as changelog:
info = info + '\n\n' + changelog.read()
return info

with open('requirements.txt') as f:
required = f.read().splitlines()

setuptools.setup(
name="Flask-MonitoringDashboard",
version='1.10.5',
version='1.10.6',
packages=setuptools.find_packages(),
include_package_data=True,
platforms='Any',
Expand Down

0 comments on commit ed6c940

Please sign in to comment.