Skip to content

Commit da1d8a4

Browse files
committed
Add LICENSE
1 parent 913d7f3 commit da1d8a4

File tree

2 files changed

+38
-12
lines changed

2 files changed

+38
-12
lines changed

LICENSE

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
Copyright (c) 2016, Pristine, Inc.
2+
All rights reserved.
3+
4+
Redistribution and use in source and binary forms, with or without
5+
modification, are permitted provided that the following conditions are met:
6+
7+
* Redistributions of source code must retain the above copyright notice, this
8+
list of conditions and the following disclaimer.
9+
10+
* Redistributions in binary form must reproduce the above copyright notice,
11+
this list of conditions and the following disclaimer in the documentation
12+
and/or other materials provided with the distribution.
13+
14+
* Neither the name of the {organization} nor the names of its
15+
contributors may be used to endorse or promote products derived from
16+
this software without specific prior written permission.
17+
18+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
22+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

setup.py

+11-12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
2+
AWS Lambda function to receive GitHub webhooks from API gateway and relay them to an EC2 instance
33
"""
44
from setuptools import find_packages, setup
55

@@ -9,10 +9,10 @@
99
name='lambda-webhook',
1010
version='0.1.0',
1111
url='https://github.com/pristineio/lambda-webhook',
12-
license='MIT',
12+
license='BSD',
1313
author='John Schwinghammer',
14-
author_email='[email protected]',
15-
description='',
14+
author_email='john+githubsource@pristine.io',
15+
description='AWS Lambda function to receive GitHub webhooks from API gateway and relay them to an EC2 instance',
1616
long_description=__doc__,
1717
packages=find_packages(exclude=['tests']),
1818
include_package_data=True,
@@ -22,20 +22,19 @@
2222
classifiers=[
2323
# As from http://pypi.python.org/pypi?%3Aaction=list_classifiers
2424
# 'Development Status :: 1 - Planning',
25-
'Development Status :: 2 - Pre-Alpha',
25+
# 'Development Status :: 2 - Pre-Alpha',
2626
# 'Development Status :: 3 - Alpha',
27-
# 'Development Status :: 4 - Beta',
27+
'Development Status :: 4 - Beta',
2828
# 'Development Status :: 5 - Production/Stable',
2929
# 'Development Status :: 6 - Mature',
3030
# 'Development Status :: 7 - Inactive',
31-
'Environment :: Console',
32-
'Intended Audience :: System Administrators',
33-
'License :: OSI Approved :: MIT License',
34-
'Operating System :: POSIX',
31+
'Environment :: Other Environment',
32+
'Intended Audience :: Developers',
33+
'License :: OSI Approved :: BSD License',
34+
'Operating System :: POSIX :: Linux',
3535
'Operating System :: MacOS',
36-
'Operating System :: Unix',
3736
'Programming Language :: Python',
3837
'Programming Language :: Python :: 2',
39-
'Topic :: Utilities',
38+
'Topic :: Software Development :: Build Tools',
4039
]
4140
)

0 commit comments

Comments
 (0)