File: setup.py

package info (click to toggle)
python-xlib 0.14%2B20091101-5
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,892 kB
  • ctags: 7,957
  • sloc: python: 22,536; awk: 89; makefile: 61
file content (24 lines) | stat: -rw-r--r-- 511 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
# Distutils script for python-xlib

from distutils.core import setup

import Xlib

setup(name = 'python-xlib',
      version = Xlib.__version_string__,

      description = "Python X Library",
      url = 'http://python-xlib.sourceforge.net/',

      author = 'Peter Liljenberg',
      author_email = 'petli@ctrl-c.liu.se',

      packages = [
          'Xlib',
          'Xlib.ext',
          'Xlib.keysymdef',
          'Xlib.protocol',
          'Xlib.support',
          'Xlib.xobject'
          ],
      )