You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1007 B
33 lines
1007 B
6 months ago
|
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',
|
||
|
]
|
||
|
)
|