mirror of
https://github.com/rpm-software-management/tito.git
synced 2025-02-24 04:32:46 +00:00
Add setup.py.
This commit is contained in:
parent
27f3597664
commit
d0e1caf74d
1 changed files with 28 additions and 0 deletions
28
setup.py
Executable file
28
setup.py
Executable file
|
@ -0,0 +1,28 @@
|
|||
#!/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"
|
Loading…
Add table
Reference in a new issue