-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
27 lines (25 loc) · 857 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
from setuptools import setup, find_packages
setup(
name='cricket',
version='1.0',
packages=find_packages(),
install_requires=[
'colorama', # List any additional dependencies here
],
entry_points={
'console_scripts': [
'cricket=game_files.main:play_game', # Command to run the game
],
},
description='A simple terminal game depicting cricket',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Ezaz Alam Ahmed ',
author_email='[email protected]',
url='https://github.com/ezazaa/terminal-cricket', # Update with your repository URL
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
)