mirror of
https://github.com/quantum5/2048.git
synced 2025-04-24 04:21:58 -04:00
Release 0.3 with README on PyPI.
This commit is contained in:
parent
19e682bf64
commit
3ef945063a
|
@ -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
|
||||
|
||||
|
|
8
setup.py
8
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',
|
||||
|
|
Loading…
Reference in a new issue