-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (30 loc) · 973 Bytes
/
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
from setuptools import setup, find_packages
with open("README.md") as file:
# Long description is the readme minus the header line
long_description = file.read()[17:]
setup(
name="terminal-mines",
version="1.3",
python_requires="~=3.4",
license="MIT",
author="Joel Eager",
description="A command-line clone of Minesweeper in Python",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/JoelEager/terminal-mines",
packages=find_packages(),
install_requires=[
"click==7.0",
],
entry_points="""
[console_scripts]
mines=terminal_mines.mines:main
""",
classifiers=[
"Topic :: Games/Entertainment :: Puzzle Games",
"Environment :: Console",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows"
]
)