-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
25 lines (24 loc) · 829 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
25
from setuptools import setup
setup(
name='awsfs',
version='0.1.0.dev1',
description='Treat AWS resources like a filesystem for command-line bliss.',
long_description=open('README.rst').read(),
url='https://github.com/adamcath/awsfs',
author='Adam Cath',
author_email='adam.cath@gmail.com',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Topic :: System :: Filesystems',
'Topic :: System :: Systems Administration',
'Topic :: Utilities',
'Programming Language :: Python :: 2.7'
],
keywords='aws fuse cloud boto tools iaas',
packages=['awsfs'],
install_requires=['boto3>=1.2', 'fusepy>=2', 'botocore>=1.3'],
entry_points={
'console_scripts': ['awsfs=awsfs.__main__:main']
}
)