forked from giftig/s3-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·48 lines (43 loc) · 1.37 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
45
46
47
48
#!/usr/bin/env python3
import os
from setuptools import setup
def readme_content():
dir = os.path.abspath(os.path.dirname(__file__))
desc = None
with open(os.path.join(dir, 'README.md'), 'r') as f:
desc = f.read()
return desc
setup(
name='s3_browser',
version='0.3.3',
packages=['s3_browser'],
entry_points={
'console_scripts': [
's3-browser=s3_browser.cli:main'
]
},
install_requires=['boto3>=1.9.0'],
python_requires='>=3.2',
long_description=readme_content(),
long_description_content_type='text/markdown',
keywords='aws s3 browser cli interactive prompt s3-browser',
author='Rob Moore',
author_email='[email protected]',
license='MIT',
url='https://github.com/giftig/s3-browser/',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Internet',
'Topic :: Terminals',
'Topic :: Utilities'
]
)