2 # Copyright 2012 Google Inc. All Rights Reserved.
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
8 # http://www.apache.org/licenses/LICENSE-2.0
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
16 """Creates a distributable python package.
18 Creating new packages:
19 1. Generate the package, dist/webpagereplay-X.X.tar.gz:
21 2. Upload the package file to the following:
22 http://code.google.com/p/web-page-replay/downloads/entry
25 $ easy_install http://web-page-replay.googlecode.com/files/webpagereplay-X.X.tar.gz
26 - The replay and httparchive commands are now on your PATH.
34 description
='Record and replay web content',
35 author
='Web Page Replay Project Authors',
36 author_email
='web-page-replay-dev@googlegroups.com',
37 url
='http://code.google.com/p/web-page-replay/',
38 license
='Apache License 2.0',
39 install_requires
=['dnspython>=1.8'],
45 package_dir
={'': '.'},
47 '': ['*.js', '*.txt', 'COPYING', 'LICENSE'],
51 'httparchive = httparchive:main',
52 'replay = replay:main',