Release 0.3 with README on PyPI.

This commit is contained in:
Quantum 2018-08-22 14:51:25 -04:00
parent 19e682bf64
commit 3ef945063a
2 changed files with 9 additions and 3 deletions

View file

@ -1,9 +1,9 @@
# 2048 [![Build Status](https://img.shields.io/travis/quantum5/2048.svg?maxAge=43200)](https://travis-ci.org/quantum5/2048) [![Coverage](https://img.shields.io/codecov/c/github/quantum5/2048.svg)](https://codecov.io/gh/quantum5/2048)
# 2048 [![Build Status](https://img.shields.io/travis/quantum5/2048.svg?maxAge=43200)](https://travis-ci.org/quantum5/2048) [![Coverage](https://img.shields.io/codecov/c/github/quantum5/2048.svg)](https://codecov.io/gh/quantum5/2048) [![PyPI](https://img.shields.io/pypi/v/2048.svg)](https://pypi.org/project/2048/) [![PyPI - Format](https://img.shields.io/pypi/format/2048.svg)](https://pypi.org/project/2048/) [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/2048.svg)](https://pypi.org/project/2048/)
My version of 2048 game, with multi-instance support, restored from
an old high school project.
![2048 Preview](https://quantum2.xyz/wp-content/uploads/2017/11/2048.png)
![2048 Preview](https://guanzhong.ca/assets/projects/2048-2fd91615603e0f5fed0299df4524c4494968c7b1d762cbb0209354cfa2215639.png)
## Installation

View file

@ -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',