Skip to content

Commit

Permalink
[MINOR] Fixing typos
Browse files Browse the repository at this point in the history
  • Loading branch information
navinpai committed Aug 13, 2018
1 parent 1185600 commit 04285ea
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

----

## What's New in s4cmd 2.0
## What's New in s4cmd 2.x

- Fully migrated from old boto 2.x to new [boto3](http://boto3.readthedocs.io/en/latest/reference/services/s3.html) library, which provides more reliable and up-to-date S3 backend.
- Support S3 `--API-ServerSideEncryption` along with **36 new API pass-through options**. See API pass-through options section for complete list.
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
Super S3 command line tool, setup.py
"""

import os, stat, path
import os, stat
from setuptools import setup, find_packages
from setuptools.command.install import install as _install

Expand All @@ -31,8 +31,8 @@
__maintainer__ = "Navin Pai, Naveen Vardhi"
__status__ = "Development"

this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md')) as f:
long_description = f.read()

class install(_install):
Expand All @@ -45,7 +45,7 @@ def run(self):
author=__author__,
license=__license__,
long_description=long_description,
long_description_content_type='text/markdown'
long_description_content_type='text/markdown',
url='https://github.com/bloomreach/s4cmd',
py_modules=['s4cmd'],
scripts=['s4cmd.py'], # Added s4cmd.py as script for backward compatibility
Expand Down

0 comments on commit 04285ea

Please sign in to comment.