-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·30 lines (28 loc) · 1.08 KB
/
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
29
30
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(name='RarDirFs',
version='0.1',
description='Mount a directory read only with direct access to files in RAR archives',
long_description="""
Mount a directory read only where all rar archives are hidden and their
files are shown instead. Beside this it can also filter files and
flatten out directories.""",
author='Jonas Jonsson',
author_email='jonas@websystem.se',
url='https://github.com/gonzzor/rardirfs',
license='BSD',
packages=['RarDirFs'],
scripts=['rardirfs'],
platforms=['Linux'],
data_files=[('man/man1', ['rardirfs.1']), ('/etc/rardirfs', ['filter', 'flatten'])],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: No Input/Output (Daemon)',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: System :: Filesystems',
],
)