forked from leeroybrun/glacier-vault-remove
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
22 lines (19 loc) · 796 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
from setuptools import setup, find_packages
import json
setup(
name = "GlacierVaultRemove",
version = "0.1",
packages = find_packages(),
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires = ['boto3>=1.4.4'],
# metadata for upload to PyPI
author = "Leeroy Brun",
author_email = "[email protected]",
description = "Tool used to remove all archives stored inside an Amazon Glacier vault.",
license = "MIT",
keywords = "aws amazon glacier boto archives vaults",
url = "https://github.com/leeroybrun/glacier-vault-remove",
)
with open("credentials.json", "w") as outfile:
json.dump({'AWSAccessKeyId': '<key>', 'AWSSecretKey': '<secretkey>'}, outfile, indent=4)