4d7f3c2d2916a6fb06668217cec77c61bce852b1
[invirt/packages/python-routefs.git] / setup.py
1 #!/usr/bin/python
2
3 from setuptools import setup
4
5 setup(
6     name="RouteFS",
7     version="0.0.1",
8     description="RouteFS: A FUSE API wrapper based on URL routing",
9     author="Evan Broder",
10     author_email="broder@mit.edu",
11     url="http://ebroder.net/code/RouteFS",
12     license="MIT",
13     py_modules=['routefs'],
14 )