diff --git a/README.md b/README.md index 0aa6f06..afdfe29 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ -# 2048 [](https://travis-ci.org/quantum5/2048) [](https://codecov.io/gh/quantum5/2048) +# 2048 [](https://travis-ci.org/quantum5/2048) [](https://codecov.io/gh/quantum5/2048) [](https://pypi.org/project/2048/) [](https://pypi.org/project/2048/) [](https://pypi.org/project/2048/) My version of 2048 game, with multi-instance support, restored from an old high school project. - + ## Installation diff --git a/setup.py b/setup.py index 3007560..b9d079a 100644 --- a/setup.py +++ b/setup.py @@ -1,9 +1,13 @@ +import os + from setuptools import setup +with open(os.path.join(os.path.dirname(__file__), 'README.md')) as f: + long_description = f.read() setup( name='2048', - version='0.2', + version='0.3', packages=['_2048'], package_data={ '_2048': ['*.ttf'], @@ -25,6 +29,8 @@ setup( url='https://github.com/quantum5/2048', description="Quantum's version of the 2048 game, with multi-instance support," 'restored from an old high school project.', + long_description=long_description, + long_description_content_type='text/markdown', keywords='2048 pygame', classifiers=[ 'Development Status :: 4 - Beta',