File: setup.py

package info (click to toggle)
zope-externaleditor 0.9.2-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 360 kB
  • ctags: 113
  • sloc: python: 1,166; makefile: 45
file content (25 lines) | stat: -rwxr-xr-x 666 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import sys
from distutils.core import setup
from zopeedit import __version__

try:
    import py2exe
except ImportError:
    if sys.platform == 'win32':
        raise
    packages = None
else:
    packages = ['Plugins']

setup(name='zopeedit',
      version=__version__,
      description="Zope External Editor",
      author="Casey Duncan and Contributors, maintained by Chris McDonough",
      author_email="chrism@plope.com",
      url="http://www.plope.com/software/ExternalEditor",
      scripts=['zopeedit.py'],
      windows=['zopeedit.py'],
      options={"py2exe": {"packages": ["encodings", "Plugins", "win32com"]}},
      
      packages=packages
      )