From 06f6803739db6ab5246d15b5f2a943d3958bc406 Mon Sep 17 00:00:00 2001 From: p87unhqmw <208010750@qq.com> Date: Fri, 31 May 2024 16:38:36 +0800 Subject: [PATCH] ADD file via upload --- setup.py | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..73d7b0c --- /dev/null +++ b/setup.py @@ -0,0 +1,32 @@ +from distutils.core import setup + +setup( + name='minesweeper', + version='1.3.1', + packages=['minesweeper',], + url='http://github.com/kinegratii/minesweeper', + license='GPLv2', + author='kinegratii', + author_email='kinegratii@gmail.com', + description='A tkinter-based game for minesweeper.', + data_files=[ + ( + 'minesweeper/resource', + [ + 'minesweeper/resource/project.txt', + 'minesweeper/resource/images/mine.ico' + ] + ) + ], + classifiers=[ + 'Development Status :: 4 - Beta', + 'License :: OSI Approved :: GNU General Public License v2 (GPLv2)', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.4', + 'Topic :: Games/Entertainment :: Board Games', + ] +)