- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
18 lines (17 loc) · 391 Bytes
/
Copy pathsetup.py
File metadata and controls
18 lines (17 loc) · 391 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
fromsetuptoolsimportsetup
setup(
name='game',
version='0.1.0',
description='Simple python game',
author='Rostislav Misiura',
author_email='rostislav9999@gmail.com',
url='https://github.com/Randomneo/python_game',
requirments=[
'pygame==1.9.1release',
'enum34',
],
install_requires=[
'pygame',
],
console=['main.py'],
)