2010-07-08 20:01:03 +02:00
|
|
|
#!/usr/bin/python
|
2010-07-04 03:05:16 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2010-07-06 17:16:41 +02:00
|
|
|
#Created by Mika Bostrom, released into the public domain as far as legally possible.
|
2010-07-04 03:05:16 +02:00
|
|
|
#
|
|
|
|
#This program is distributed in the hope that it will be useful,
|
|
|
|
#but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2010-07-06 17:16:41 +02:00
|
|
|
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
2010-07-04 03:05:16 +02:00
|
|
|
|
2009-08-22 16:36:44 +02:00
|
|
|
# Python packaging for fpdb
|
|
|
|
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
setup(name = 'fpdb',
|
|
|
|
description = 'Free Poker Database',
|
2009-10-26 16:49:37 +01:00
|
|
|
version = '0.12',
|
2009-08-22 16:36:44 +02:00
|
|
|
author = 'FPDB team',
|
|
|
|
author_email = 'fpdb-main@lists.sourceforge.net',
|
|
|
|
packages = ['fpdb'],
|
|
|
|
package_dir = { 'fpdb' : 'pyfpdb' },
|
|
|
|
data_files = [
|
|
|
|
('/usr/share/doc/python-fpdb',
|
2010-07-02 11:32:05 +02:00
|
|
|
['THANKS.txt']),
|
2009-10-21 19:24:46 +02:00
|
|
|
('/usr/share/pixmaps',
|
2009-10-27 14:24:49 +01:00
|
|
|
['gfx/fpdb-icon.png', 'gfx/fpdb-icon2.png',
|
|
|
|
'gfx/fpdb-cards.png'
|
|
|
|
]),
|
2009-10-21 19:24:46 +02:00
|
|
|
('/usr/share/applications',
|
|
|
|
['files/fpdb.desktop']),
|
|
|
|
('/usr/share/python-fpdb',
|
2009-10-23 12:06:33 +02:00
|
|
|
['pyfpdb/logging.conf', 'pyfpdb/Cards01.png',
|
|
|
|
'pyfpdb/HUD_config.xml.example'
|
|
|
|
])
|
2009-10-21 19:24:46 +02:00
|
|
|
]
|
2009-08-22 16:36:44 +02:00
|
|
|
)
|