summaryrefslogtreecommitdiff
path: root/setup.py
blob: 4f8da79494ed501f80ebfa8d3d03b3a66e399820 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python3
from distutils.core import setup
version='0.3'

setup(
    name='fuse-httpfs',
    version=version,
    author='Yves Fischer',
    author_email='yvesf-git@xapek.org',
    packages=[ 'httpfs' ],
    scripts=['fuse-httpfs'],
    url='https://github.com/yvesf/fuse-httpfs',
    download_url="https://github.com/yvesf/fuse-httpfs/archive/v{}.tar.gz".format(version),
    license='LICENSE.txt',
    description='A fuse filesystem for common http Index of pages.',
    long_description=open('README.txt').read(),
    install_requires=[
        "fusepy",
        "requests",
    ],
)