gitzilla/setup.py

31 lines
829 B
Python
Raw Permalink Normal View History

2010-03-06 14:05:51 -08:00
# fix broken behaviour - hardlinks are a FS attribute, not an OS attribute
# without doing this, the builds fail on encfs, AFS, NFS etc.
import os
if hasattr(os, 'link'):
delattr(os, 'link')
from setuptools import setup
args = dict(
name='gitzilla',
description='Git-Bugzilla integration',
author='Devendra Gera',
author_email='gera@theoldmonk.net',
url='http://www.theoldmonk.net/gitzilla/',
2010-04-15 07:18:37 -07:00
version='2.0',
2010-03-06 14:05:51 -08:00
requires=['pybugz'],
package_dir={'gitzilla': '.'},
packages=['gitzilla'],
package_data={'': ['etc/*']},
include_package_data=True,
entry_points={
'console_scripts': [
'gitzilla-post-receive = gitzilla.hookscripts:post_receive',
'gitzilla-update = gitzilla.hookscripts:update',
'gitzilla-gencookie = gitzilla.utilscripts:generate_cookiefile',
2010-03-06 14:05:51 -08:00
],
}
)
setup(**args)