Skip to content

Commit cd1c96c

Browse files
committed
Add Apache Licese
1 parent 6d259ee commit cd1c96c

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed

LICENSE

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Copyright 2012 - Mozilla Foundation
2+
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
7+
http://www.apache.org/licenses/LICENSE-2.0
8+
9+
Unless required by applicable law or agreed to in writing, software
10+
distributed under the License is distributed on an "AS IS" BASIS,
11+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
See the License for the specific language governing permissions and
13+
limitations under the License.

setup.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
with open(os.path.join(here, 'README.rst')) as f:
77
README = f.read()
88

9+
with open(os.path.join(here, 'CHANGELOG.rst')) as f:
10+
CHANGELOG = f.read()
11+
12+
913
REQUIREMENTS = [
1014
'colander',
1115
'cornice',
@@ -23,11 +27,13 @@
2327
setup(name='kinto',
2428
version='0.1.dev0',
2529
description='kinto',
26-
long_description=README,
30+
long_description=README + "\n\n" + CHANGELOG,
31+
license='Apache License (2.0)',
2732
classifiers=[
2833
"Programming Language :: Python",
2934
"Topic :: Internet :: WWW/HTTP",
30-
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application"
35+
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
36+
"License :: OSI Approved :: Apache Software License"
3137
],
3238
keywords="web services",
3339
author='Mozilla Services',

0 commit comments

Comments
 (0)