File: setup.py

package info (click to toggle)
twisted 12.0.0-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 9,720 kB
  • sloc: python: 78,364; ansic: 179; makefile: 113; sh: 34
file content (14 lines) | stat: -rw-r--r-- 203 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""
Script for building the example.

Usage:
    python setup.py py2app
"""

from distutils.core import setup
import py2app
    
setup(
    app = ['Twistzilla.py'],
    data_files = ["English.lproj"],
)