-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v1.2.1 fixes PyPi import issue + versioning
- Loading branch information
Showing
4 changed files
with
17 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
], | ||
|
||
) |