-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
31 lines (26 loc) · 802 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
from setuptools import setup, find_packages
# reading long description from file
with open("README.md", encoding="utf-8") as file:
long_description = file.read()
# specify requirements of your package here
REQUIREMENTS = ["pygame"]
# calling the setup function
setup(
name="snake",
version="0.0.1",
description="A simple snake game",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/douglas-cpp/snake",
author="Douglas",
author_email="douglasc.dev@gmail.com",
license="Apache License 2.0",
packages=find_packages(include=["snake"]),
entry_points={
"console_scripts": [
"snake = snake.main:main",
],
},
install_requires=REQUIREMENTS,
keywords="game",
)