projects
/
matrix.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
move git repository existence check out of getvar
[matrix.git]
/
setup.py
1
#!/usr/bin/env python
2
3
from distutils.core import setup
4
from glob import glob
5
6
setup(
7
name='matrix',
8
version='1.0-pre',
9
license='GPL',
10
packages=['matrix'],
11
scripts=['bin/matrix', 'bin/matrix-graph'],
12
data_files=[('share/scripts', glob('scripts/*.mak'))],
13
)