-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (37 loc) · 1.53 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from setuptools import setup, find_packages
long_description = '''
### Oxfs
Oxfs is a user-space network file system similar to SSHFS, and the underlying data transfer is based on the SFTP protocol. Oxfs introduces an asynchronous refresh policy to solve the jamming problem caused by the mismatch between network speed and user operation file speed. When Oxfs writes a file, it first writes to the local cache file and submits an asynchronous update task to update the content to the remote host. Similarly, when reading a file, it is preferred to read from a local cache file. Oxfs's data cache eventually falls to disk, and even if it is remounted, the history cache can still be used.
### Get Start
- https://oxfs.io
'''
setup(
name='oxfs',
version='0.5.5',
author='RainMark',
author_email='[email protected]',
description='A Fast SFTP File System',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/oxfs/oxfs',
classifiers=[
'Operating System :: Unix',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3 :: Only',
'License :: OSI Approved :: MIT License',
],
packages=find_packages(),
include_package_data=True,
zip_safe=True,
install_requires = [
'fusepy == 3.0.1',
'paramiko >= 2.0.0',
'xxhash >= 1.3.0',
],
entry_points={
'console_scripts':[
'oxfs = oxfs.oxfs:main'
]
},
)