-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (16 loc) · 799 Bytes
/
setup.py
File metadata and controls
17 lines (16 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
""" Basic setup file for the game installation support for certain coding editors. """
from setuptools import setup
setup(
name='Dead End',
version='v6.0',
packages=[''],
url='https://github.com/JordanLeich/Dead-End',
license='MIT',
author='Jordan Leich',
author_email='jordanleich@gmail.com',
description='This is a zombie survival game where you must make the best choices and decisions possible in order '
'to live. As a survivor, you will encounter zombies, weapons, people, and a merchant to buy from with '
'an in-game currency. Every decision you make has a cause and effect while some lead you to fortune '
'and others lead you to death.',
install_requires=['pygame', 'colored', 'prettytable', 'pillow']
)