forked from danilop/yas3fs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (19 loc) · 745 Bytes
/
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
from setuptools import setup, find_packages
import sys
execfile('yas3fs/_version.py')
requires = ['setuptools>=2.2', 'boto>=2.25.0']
# Versions of Python pre-2.7 require argparse separately. 2.7+ and 3+ all
# include this as the replacement for optparse.
if sys.version_info[:2] < (2, 7):
requires.append("argparse")
setup(
name='yas3fs',
version=__version__,
description='YAS3FS (Yet Another S3-backed File System) is a Filesystem in Userspace (FUSE) interface to Amazon S3.',
packages=find_packages(),
author='Danilo Poccia',
author_email='[email protected]',
url='https://github.com/danilop/yas3fs',
install_requires=requires,
entry_points = { 'console_scripts': ['yas3fs = yas3fs:main'] },
)