Debian packaging, step #1

* add setup.py for python distutils use
* add packaging/debian/*

Not ready yet, but at least seems to behave sanely
This commit is contained in:
Mika Bostrom
2009-08-22 17:36:44 +03:00
parent 1eb17e90e1
commit f84644990b
8 changed files with 101 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
# setup.py
# Python packaging for fpdb
from distutils.core import setup
setup(name = 'fpdb',
description = 'Free Poker Database',
version = '0.10.999',
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',
'docs/tabledesign.html', 'THANKS.txt'])]
)