1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/usr/bin/env python
from distutils.core import setup
setup(name='Collagen',
version='1.0',
description='Gentoo portage tree-wide files database',
author='Stanislav Ochotnicky',
author_email='stanislav@ochotnicky.com',
url='http://soc.gentooexperimental.org/projects/show/collision-database',
package_dir = {'': 'src'},
packages=['collagen/',
'collagen/tinderbox',
'collagen/matchbox',
'collagen/matchbox/db',
'collagen/matchbox/db/main',
'collagen/common',
'collagen/protocol',
'collagen/util/'],
scripts=['src/matchbox.py', 'src/tinderbox.py','util/mktinderboxchroot.sh']
)
|