Commit cd1c96c 1 parent 6d259ee commit cd1c96c Copy full SHA for cd1c96c
File tree 2 files changed +21
-2
lines changed
2 files changed +21
-2
lines changed Original file line number Diff line number Diff line change
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.
Original file line number Diff line number Diff line change 6
6
with open (os .path .join (here , 'README.rst' )) as f :
7
7
README = f .read ()
8
8
9
+ with open (os .path .join (here , 'CHANGELOG.rst' )) as f :
10
+ CHANGELOG = f .read ()
11
+
12
+
9
13
REQUIREMENTS = [
10
14
'colander' ,
11
15
'cornice' ,
23
27
setup (name = 'kinto' ,
24
28
version = '0.1.dev0' ,
25
29
description = 'kinto' ,
26
- long_description = README ,
30
+ long_description = README + "\n \n " + CHANGELOG ,
31
+ license = 'Apache License (2.0)' ,
27
32
classifiers = [
28
33
"Programming Language :: Python" ,
29
34
"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"
31
37
],
32
38
keywords = "web services" ,
33
39
author = 'Mozilla Services' ,
You can’t perform that action at this time.
0 commit comments