-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (26 loc) · 875 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
23
24
25
26
27
28
29
30
31
32
33
34
35
from setuptools import setup
setup(
name='aws-profile-gpg',
author="jeff oconnell",
author_email="jeffo@rulez.com",
license="MIT",
url='https://github.com/jefforulez/aws-profile-gpg',
version='1.0.0',
description='call aws-cli using access keys from an encrypted credentials file',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
scripts=['bin/aws-profile-gpg'],
python_requires='>=3.7, <4',
install_requires=[
'botocore>=1.12,<2',
'PyGPGME>=0.3,<1',
],
classifiers=(
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Topic :: Security :: Cryptography",
"Topic :: System :: Systems Administration"
)
)