Skip to content

Commit

Permalink
v1.2.1 fixes PyPi import issue + versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
yasinS committed Apr 9, 2017
1 parent 0084794 commit ca50d30
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Change Log
All notable changes to the Sandcastle script will be documented in this file.

## 1.2.2 – 2017-04-09
- Sandcastle is now live on PyPi! This version fixes an import issue with `bucket-names.txt`.

## 1.2.1 – 2017-04-09
- Sandcastle is being packaged and published on PyPi; this version is used for compatibility purposes.

Expand Down
5 changes: 5 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
include bucket_names.txt
include CHANGELOG.md
include README.md
include README.rst
include LICENSE
2 changes: 1 addition & 1 deletion sandcastle.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
_\ \/ _ `/ _ \/ _ / __/ _ `(_-</ __/ / -_)
/___/\_,_/_//_/\_,_/\__/\_,_/___/\__/_/\__/
S3 bucket enumeration // release v1.2.1 // ysx
S3 bucket enumeration // release v1.2.2 // ysx
"""
# Receive – target stem and argument check
targetStem = ""
Expand Down
11 changes: 8 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
from distutils.core import setup
setup(
name = 'sandcastle',
version = '1.2.1',
version = '1.2.2',
description = 'A Python script for AWS S3 bucket enumeration.',
author = 'Yasin Soliman',
author_email = '[email protected]',
scripts=['sandcastle.py'],
url = 'https://github.com/yasinS/sandcastle',
download_url = 'https://github.com/yasinS/sandcastle/archive/1.2.1.tar.gz',
download_url = 'https://github.com/yasinS/sandcastle/archive/1.2.2.tar.gz',
keywords = ['amazons3', 'infosec', 'bucket'],
classifiers = [],
classifiers=[
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Topic :: Security",
],

)

0 comments on commit ca50d30

Please sign in to comment.