1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
#!/usr/bin/env python
"""
License: BSD
(c) 2005-2008 ::: Alec Thomas (alec@swapoff.org)
(c) 2009 ::: www.CodeResort.com - BV Network AS (simon-code@bvnetwork.no)
"""
from setuptools import setup, find_packages
setup(
name='TracXMLRPC',
version='1.0.6',
license='BSD',
author='Alec Thomas',
author_email='alec@swapoff.org',
maintainer='Odd Simon Simonsen',
maintainer_email='simon-code@bvnetwork.no',
url='http://trac-hacks.org/wiki/XmlRpcPlugin',
description='XML-RPC interface to Trac',
zip_safe=True,
test_suite = 'tracrpc.tests.suite',
packages=find_packages(exclude=['*.tests']),
package_data={
'tracrpc': ['templates/*.html']
},
entry_points={
'trac.plugins': 'TracXMLRPC = tracrpc'
},
)
|