Last change
on this file since 846 was
838,
checked in by andersk, 16 years ago
|
Package python-routefs.
|
-
Property svn:executable set to
*
|
File size:
394 bytes
|
Rev | Line | |
---|
[838] | 1 | #!/usr/bin/python |
---|
| 2 | |
---|
| 3 | from setuptools import setup, find_packages |
---|
| 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 | packages=find_packages(), |
---|
| 14 | install_requires=['fuse_python>=0.2a', 'Routes>=1.7'] |
---|
| 15 | ) |
---|
Note: See
TracBrowser
for help on using the repository browser.