-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·28 lines (26 loc) · 987 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/python
from setuptools import setup, find_packages
setup(
name="RouteFS",
version="1.2.0",
description="RouteFS: A FUSE API wrapper based on URL routing",
author="Evan Broder",
author_email="broder@mit.edu",
url="http://github.com/ebroder/python-routefs/wikis",
license="MPL, GPL",
packages=find_packages(),
install_requires=['fuse_python>=0.2a', 'Routes>=1.9'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Plugins',
'Environment :: No Input/Output (Daemon)',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License (GPL)',
'License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1)',
'License :: DFSG approved',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python'
]
)