projects
/
invirt/packages/python-routefs.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Force Routes and FUSE to be installed through setuptools
[invirt/packages/python-routefs.git]
/
setup.py
diff --git
a/setup.py
b/setup.py
index
4d7f3c2
..
2968f43
100755
(executable)
--- a/
setup.py
+++ b/
setup.py
@@
-1,6
+1,6
@@
#!/usr/bin/python
#!/usr/bin/python
-from setuptools import setup
+from setuptools import setup, find_packages
setup(
name="RouteFS",
setup(
name="RouteFS",
@@
-10,5
+10,6
@@
setup(
author_email="broder@mit.edu",
url="http://ebroder.net/code/RouteFS",
license="MIT",
author_email="broder@mit.edu",
url="http://ebroder.net/code/RouteFS",
license="MIT",
- py_modules=['routefs'],
+ packages=find_packages(),
+ install_requires=['fuse_python>=0.2a', 'Routes>=1.7']
)
)