-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 818 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
from setuptools import find_packages
from setuptools import setup
major_version = '0.1'
minor_version = '0'
name = 'snake_game'
version = "%s.%s" % (major_version, minor_version)
if __name__ == "__main__":
setup(name=name,
version=version,
description='Snake Game For Ivan And Peter',
classifiers=[
"Development Status :: 1 - Beta",
"Programming Language :: Python",
],
author='Aleksey Kutepov',
author_email='[email protected]',
packages=find_packages(),
zip_safe=False,
install_requires=[
'pygame==1.9.2'
],
entry_points={
'console_scripts': [
'snake_game = snake.snake_main:main',
],
},
)