diff options
author | Stanislav Ochotnicky <sochotnicky@gmail.com> | 2009-08-14 16:19:01 +0200 |
---|---|---|
committer | Stanislav Ochotnicky <sochotnicky@gmail.com> | 2009-08-14 16:19:01 +0200 |
commit | 81ce3605005fd1f9000470c9badf97ae54596543 (patch) | |
tree | 3da6d3a635c16a9a032d78361b06a93a25cd8ef1 | |
parent | More changes for installation of matchbox/tinderbox (diff) | |
download | collagen-81ce3605005fd1f9000470c9badf97ae54596543.tar.gz collagen-81ce3605005fd1f9000470c9badf97ae54596543.tar.bz2 collagen-81ce3605005fd1f9000470c9badf97ae54596543.zip |
Added setup.py installation script
-rw-r--r-- | setup.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..8fd50b6 --- /dev/null +++ b/setup.py @@ -0,0 +1,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'] + ) + |