From: Evan Broder Date: Mon, 4 Aug 2008 07:11:57 +0000 (-0700) Subject: Initial project creation X-Git-Tag: 1.0.0~27 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/python-routefs.git/commitdiff_plain/d8d996ff3b532d4e8786c601af2f3f340905854c?ds=sidebyside Initial project creation --- d8d996ff3b532d4e8786c601af2f3f340905854c diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..70ba289 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +RouteFS.egg-info +build +dist +*.pyc diff --git a/routefs/__init__.py b/routefs/__init__.py new file mode 100755 index 0000000..a230cd5 --- /dev/null +++ b/routefs/__init__.py @@ -0,0 +1,5 @@ +import fuse +from fuse import Fuse + +class RouteFS(Fuse): + pass diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..4d7f3c2 --- /dev/null +++ b/setup.py @@ -0,0 +1,14 @@ +#!/usr/bin/python + +from setuptools import setup + +setup( + name="RouteFS", + version="0.0.1", + description="RouteFS: A FUSE API wrapper based on URL routing", + author="Evan Broder", + author_email="broder@mit.edu", + url="http://ebroder.net/code/RouteFS", + license="MIT", + py_modules=['routefs'], +)