2010-07-04 03:05:16 +02:00
|
|
|
#!/usr/bin/python2
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
#Copyright 2009-2010 Mika Bostrom
|
|
|
|
#This program is free software: you can redistribute it and/or modify
|
|
|
|
#it under the terms of the GNU Affero General Public License as published by
|
|
|
|
#the Free Software Foundation, version 3 of the License.
|
|
|
|
#
|
|
|
|
#This program is distributed in the hope that it will be useful,
|
|
|
|
#but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
#GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
#You should have received a copy of the GNU Affero General Public License
|
|
|
|
#along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#In the "official" distribution you can find the license in agpl-3.0.txt.
|
|
|
|
|
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',
|
|
|
|
['docs/readme.txt', 'docs/release-notes.txt',
|
2009-10-21 19:24:46 +02:00
|
|
|
'docs/tabledesign.html', 'THANKS.txt']),
|
|
|
|
('/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
|
|
|
)
|