-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (31 loc) · 911 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
32
33
34
35
36
# -*- coding: utf-8 -*-
"""
PyPacMan
Copyright (c) 2013 - Péricles Lopes Machado
This file is distributed under the MIT license. See LICENSE for details.
"""
from distutils.core import setup
setup(
name='PyPacMan',
version='0.1.7',
author='Pericles Lopes Machado',
author_email='[email protected]',
packages=['pypacman','pypacman.ai','pypacman.gui','pypacman.game'],
scripts=[
'pypacman/ai/a_star.py',
'pypacman/ai/ai_control.py',
'pypacman/gui/window.py',
'pypacman/game/game_control.py'
],
url='http://pypi.python.org/pypi/PyPacMan/',
license='LICENSE.txt',
description='Um clone do pacman desenvolvido como estudo de caso da aplicação de sistemas paralelos em games de tempor real.',
long_description=open('README.txt').read(),
install_requires=[
"pygame >= 1.0.0"
],
package_data = {
'': ['*.txt'],
'': ['*.png']
}
)