-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (32 loc) · 872 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
36
37
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setupOptions = dict(
name='awsgen',
version='0.0.16',
install_requires=[
'boto3>=1.9.35',
'botocore>=1.12.16',
'requests',
'configparser'
],
include_package_data=True,
scripts=[
'bin/aws-gen',
'bin/aws-gen.cmd',
],
provides=[],
platforms=['Any'],
namespace_packages=[],
packages=find_packages(),
license = "BSD",
description = 'Manage AWS Security Token Service (STS)',
long_description=read('README.md'),
long_description_content_type='text/markdown',
url = 'https://github.com/mvallim/aws-gen-cli',
author='Marcos Vallim',
author_email='[email protected]'
)
setup(**setupOptions)