File: setup.py

package info (click to toggle)
spe 0.8.4.h-3.2
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 6,992 kB
  • ctags: 10,060
  • sloc: python: 61,437; makefile: 72; sh: 3
file content (15 lines) | stat: -rw-r--r-- 777 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#/usr/bin/python
from distutils.core import setup

setup(name          = "spe",
      description   = """Python IDE with UML, PyChecker Source Code Doctor, WinPdb Debugger, wxGlade and XRCed GUI designers and Blender support.""",
      author        = "www.stani.be",
      author_email  = "spe.stani.be@gmail.com",
      url           = "http://pythonide.stani.be",
      license       = "GPL",
      scripts       = ['_spe/spe'],
      packages      = ['_spe', '_spe.dialogs', '_spe.examples', '_spe.plugins', '_spe.shortcuts', '_spe.sidebar',
                       '_spe.skins', '_spe.sm', '_spe.tabs', '_spe.view', '_spe.skins.default', '_spe.sm.wxp'],
      package_data  = {'_spe': ['defaults.cfg', 'doc/donate.html', 'doc/about.htm', 'skins/default/*', 'images/*']}
)