blob: 1b475d50c8d2bb64b6dfac35a64d892f0c6ce090 (
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.4'
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.md').read(),
install_requires=[
"fusepy",
"requests",
],
)
|