File: setup.py

package info (click to toggle)
wikipediafs 0.2-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 264 kB
  • ctags: 157
  • sloc: python: 702; sh: 26; makefile: 16
file content (15 lines) | stat: -rw-r--r-- 389 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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'],
)