11 lines
207 B
Python
11 lines
207 B
Python
from distutils.core import setup
|
|
import py2exe
|
|
opts = {
|
|
'py2exe': {
|
|
'includes': "pango,atk,gobject",
|
|
}
|
|
}
|
|
|
|
setup(name='Free Poker Database', version='0.12', console=[{"script":"fpdb.py"}])
|
|
|