This repository has been archived by the owner on May 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
58 lines (52 loc) · 1.91 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
"""
greengrass-group-setup
----------------------
"""
# Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"). You may not
# use this file except in compliance with the License. A copy of the License is
# located at
# http://aws.amazon.com/apache2.0/
#
# or in the "license" file accompanying this file. This file is distributed on
# an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
# express or implied. See the License for the specific language governing
# permissions and limitations under the License.
import os
from setuptools import setup
from gg_group_setup import __version__
def open_file(fname):
return open(os.path.join(os.path.dirname(__file__), fname))
setup(
name='gg_group_setup',
version=__version__,
url='https://github.com/awslabs/aws-greengrass-group-setup',
license="Apache License 2.0",
author='Brett Francis',
author_email='[email protected]',
description='A file-driven approach to the creation of an entire AWS Greengrass group',
long_description=open_file("README.rst").read(),
py_modules=['group_setup'],
zip_safe=False,
include_package_data=True,
install_requires=['boto3>=1.7.50', 'fire>=0.1.3'],
packages=["gg_group_setup"],
keywords='greengrass group aws iot',
entry_points='''
[console_scripts]
gg_group_setup=gg_group_setup:main
''',
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'Environment :: Web Environment',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'
]
)