File: setup.py

package info (click to toggle)
wikipediafs 0.3-5
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 204 kB
  • ctags: 140
  • sloc: python: 883; sh: 26; makefile: 18
file content (16 lines) | stat: -rw-r--r-- 466 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from distutils.core import setup

# Please run
# python setup.py install

setup(
    name = 'wikipediafs',
    version = '0.1',
    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 = [('/usr/share/man/man1/', ['doc/mount.wikipediafs.1.gz'])],
)