-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (21 loc) · 692 Bytes
/
setup.py
File metadata and controls
25 lines (21 loc) · 692 Bytes
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
from setuptools import setup
def read(file_name):
with open(file_name) as f:
return f.read()
setup(
name='zerofs',
version='0.2.0',
description='Transparant filesystem backed by Backblaze B2 object store',
long_description=read('README.md'),
url='https://github.com/picklelo/zerofs',
author='Nikhil Rao',
author_email='nikhil@nikhilrao.me',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
],
keywords='backblaze b2 zero fs filesystem',
packages=['zerofs'],
scripts=['bin/zerofs'],
install_requires=['backblazeb2', 'fusepy'])