source: trunk/packages/python-routefs/setup.py @ 2766

Last change on this file since 2766 was 981, checked in by broder, 16 years ago

Import RouteFS for new versions of ConsoleFS and RemconfFS

  • Property svn:executable set to *
File size: 972 bytes
Line 
1#!/usr/bin/python
2
3from setuptools import setup, find_packages
4
5setup(
6    name="RouteFS",
7    version="1.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="MPL, GPL",
13    packages=find_packages(),
14    install_requires=['fuse_python>=0.2a', 'Routes>=1.7'],
15    classifiers=[
16        'Development Status :: 5 - Production/Stable',
17        'Environment :: Plugins',
18        'Environment :: No Input/Output (Daemon)',
19        'Intended Audience :: Developers',
20        'Intended Audience :: System Administrators',
21        'License :: OSI Approved :: GNU General Public License (GPL)',
22        'License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1)',
23        'License :: DFSG approved',
24        'Operating System :: MacOS :: MacOS X',
25        'Operating System :: POSIX',
26        'Programming Language :: Python'
27        ]
28)
Note: See TracBrowser for help on using the repository browser.