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:
@@ -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'])]
|
||||
)
|
||||
Reference in New Issue
Block a user