File: setup.py

package info (click to toggle)
ttcn3parser 20080407-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 308 kB
  • ctags: 33
  • sloc: python: 1,574; makefile: 12
file content (15 lines) | stat: -rw-r--r-- 365 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python

from distutils.core import setup

setup(
      version="20080407",
      author="W. Martin Borgert",
      author_email="debacle@debian.org",
      description="TTCN-3 parser",
      license="GNU GPL v3 or later",
      name="TTCN3Parser",
      url="www.debian.org",
      scripts = ["TTCN3Parser"],
      packages = ["ttcn3parser"]
      )