-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (33 loc) · 1.04 KB
/
setup.py
File metadata and controls
36 lines (33 loc) · 1.04 KB
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
34
35
36
from setuptools import setup, find_packages
with open("README.md", "r") as readme_file:
long_description = readme_file.read()
description = "This simple implementation of the minesweeper game is done in Python using the pygame game library and " \
"the MVC pattern. "
setup(
name="minesweeper-mvc",
version="1.1.0",
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
urls=[
("Project", "https://github.com/Gerrux/Minesweeper")
],
author="Ilya Kalinin",
author_email="gerrux@yandex.ru",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
],
keywords="minesweeper game pygame",
packages=find_packages(),
include_package_data=True,
entry_points={
"console_scripts": ["minesweeper=minesweeper:__main__"],
},
python_requires=">=3.6",
install_requires=[
"pygame>=2.1.2"
],
)