mirror of
https://github.com/rpm-software-management/tito.git
synced 2025-02-23 12:12:47 +00:00
29 lines
663 B
Python
29 lines
663 B
Python
![]() |
#!/usr/bin/python
|
||
|
|
||
|
""" Tito Distutils Setup Script """
|
||
|
|
||
|
import os
|
||
|
|
||
|
from distutils.core import setup
|
||
|
|
||
|
|
||
|
setup(name="tito",
|
||
|
version='1.0',
|
||
|
description='A tool for managing rpm based git projects.',
|
||
|
author='Devan Goodwin',
|
||
|
author_email='dgoodwin@rm-rf.ca',
|
||
|
url='http://rm-rf.ca/tito',
|
||
|
license='GPL',
|
||
|
packages=[
|
||
|
'spacewalk',
|
||
|
'spacewalk.releng',
|
||
|
],
|
||
|
package_dir={
|
||
|
'spacewalk': 'src/spacewalk',
|
||
|
'spacewalk.releng': 'src/spacewalk/releng',
|
||
|
},
|
||
|
scripts=['bin/tito', 'bin/bump-version.pl', 'bin/tar-fixup-stamp-comment.pl', 'bin/test-setup-specfile.pl'],
|
||
|
)
|
||
|
|
||
|
print "tito installation complete"
|