source: releases/1001Screenshot/1.0.1/setup.py@ 335

Last change on this file since 335 was 177, checked in by Nicholas Riley, 19 years ago

1001Screenshot 1.0.1

File size: 695 bytes
Line 
1#!/usr/bin/env python
2"""
3setup.py - script for building 1001Screenshot
4
5Usage:
6 % python setup.py py2app
7"""
8from distutils.core import setup
9import py2app
10
11NAME = '1001Screenshot'
12VERSION = '1.0.1'
13COPYRIGHT = u'\xa9 2005 Nicholas Riley'
14
15plist = dict(
16 CFBundleName=NAME,
17 CFBundleVersion=VERSION,
18 CFBundleShortVersionString=VERSION,
19 CFBundleGetInfoString='%s %s, %s' % (NAME, VERSION, COPYRIGHT),
20 CFBundleExecutable=NAME,
21 CFBundleIdentifier='net.sabi.1001screenshot',
22 NSHumanReadableCopyright=COPYRIGHT,
23 LSUIElement=1,
24)
25
26
27setup(
28 app=[
29 dict(script='screenshot.py', plist=plist),
30 ],
31 data_files=['/usr/local/bin/launch', '__error__.sh'],
32)
Note: See TracBrowser for help on using the repository browser.