-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 1.05 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from setuptools import setup
setup(
name = 'terminal-minesweeper',
description = 'A pure Python implementation of minesweeper using curses.',
long_description = open('README.md').read(),
long_description_content_type = 'text/markdown',
version = "0.2.5",
author = 'Mia Celeste',
author_email = '[email protected]',
url = 'https://minesweeper.mia1024.io/',
python_requires = '>=3.6',
packages = ['minesweeper'],
entry_points = {
'console_scripts': [
'minesweeper = minesweeper.main:run'
]
},
install_requires = [
"windows-curses ; platform_system == 'Windows'"
],
license = 'GPLv3-only',
classifiers = [
'Environment :: Console :: Curses',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows :: Windows 10',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python :: 3',
'Topic :: Games/Entertainment'
]
)