blob: 23be5aa57984bb270e4868dde1ff37a7272d0526 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
from distutils.core import setup
import os
# Please run
# python setup.py install
if os.path.exists('doc/mount.wikipediafs.1.gz'):
df = [('/usr/share/man/man1/', ['doc/mount.wikipediafs.1.gz'])]
else:
df = []
setup(
name = 'wikipediafs',
author = 'Mathieu Blondel',
author_email = 'mblondel@users.sourceforge.net',
url = 'http://wikipediafs.sourceforge.net',
packages = ['wikipediafs'],
package_dir = {'wikipediafs':'src/wikipediafs/'},
scripts = ['src/mount.wikipediafs'],
data_files = df,
)
|