File: setup.py

package info (click to toggle)
undertaker 1.6.1-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 131,552 kB
  • ctags: 5,763
  • sloc: ansic: 35,632; cpp: 9,937; python: 6,018; sh: 2,682; makefile: 811; yacc: 702; lex: 502; perl: 291; lisp: 146
file content (22 lines) | stat: -rw-r--r-- 580 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

from distutils.core import setup

with open('VERSION') as f:
    version = f.read().rstrip('\n')

setup (name='vamos',
       version=version,
       package_dir={'vamos': 'python/vamos'},
       packages=['vamos',
                 'vamos.rsf2model',
                 'vamos.golem',
                 'vamos.vampyr',
                 'vamos.busyfix'
                 ],
       scripts=['python/golem',
                'python/rsf2model',
                'python/undertaker-kconfigpp',
                'python/vampyr',
                'python/busyfix',
                ],
       )