| OLD | NEW |
| (Empty) |
| 1 # -*- coding: utf-8 -*- | |
| 2 # | |
| 3 # Copyright 2009 - 2014 | |
| 4 # André Malo or his licensors, as applicable | |
| 5 # | |
| 6 # Licensed under the Apache License, Version 2.0 (the "License"); | |
| 7 # you may not use this file except in compliance with the License. | |
| 8 # You may obtain a copy of the License at | |
| 9 # | |
| 10 # http://www.apache.org/licenses/LICENSE-2.0 | |
| 11 # | |
| 12 # Unless required by applicable law or agreed to in writing, software | |
| 13 # distributed under the License is distributed on an "AS IS" BASIS, | |
| 14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| 15 # See the License for the specific language governing permissions and | |
| 16 # limitations under the License. | |
| 17 | |
| 18 [package] | |
| 19 name = rjsmin | |
| 20 | |
| 21 python.min = 2.4 | |
| 22 python.max = 3.4 | |
| 23 pypy.min = 1.9 | |
| 24 pypy.max = 2.2 | |
| 25 jython.min = 2.5 | |
| 26 jython.max = 2.7 | |
| 27 | |
| 28 version.number = 1.0.10 | |
| 29 | |
| 30 author.name = André Malo | |
| 31 author.email = nd@perlig.de | |
| 32 #maintainer.name = | |
| 33 #maintainer.email = | |
| 34 url.homepage = http://opensource.perlig.de/rjsmin/ | |
| 35 url.download = http://storage.perlig.de/rjsmin/ | |
| 36 | |
| 37 | |
| 38 [docs] | |
| 39 meta.classifiers = docs/CLASSIFIERS | |
| 40 meta.description = docs/DESCRIPTION | |
| 41 meta.summary = docs/SUMMARY | |
| 42 meta.provides = docs/PROVIDES | |
| 43 meta.license = LICENSE | |
| 44 meta.keywords = | |
| 45 Javascript | |
| 46 Minimization | |
| 47 | |
| 48 apidoc.dir = docs/apidoc | |
| 49 apidoc.strip = 1 | |
| 50 #apidoc.ignore = | |
| 51 | |
| 52 #userdoc.dir = docs/userdoc | |
| 53 #userdoc.strip = 1 | |
| 54 #userdoc.ignore = | |
| 55 # .buildinfo | |
| 56 | |
| 57 #examples.dir = docs/examples | |
| 58 #examples.strip = 1 | |
| 59 #examples.ignore = | |
| 60 | |
| 61 #man = | |
| 62 | |
| 63 extra = | |
| 64 README.rst | |
| 65 docs/CHANGES | |
| 66 docs/BENCHMARKS | |
| 67 | |
| 68 | |
| 69 [manifest] | |
| 70 #packages.lib = . | |
| 71 #packages.collect = | |
| 72 modules = rjsmin | |
| 73 | |
| 74 #scripts = | |
| 75 | |
| 76 dist = | |
| 77 bench | |
| 78 bench.sh | |
| OLD | NEW |