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 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
#!/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
extra = {}
try:
from trac.dist import get_l10n_cmdclass
except ImportError:
pass
else:
extra['cmdclass'] = get_l10n_cmdclass() or {}
setup(
name='TracXMLRPC',
version='1.2.0',
license='BSD',
author='Alec Thomas',
author_email='alec@swapoff.org',
maintainer='Odd Simon Simonsen',
maintainer_email='simon-code@bvnetwork.no',
url='https://trac-hacks.org/wiki/XmlRpcPlugin',
description='RPC interface to Trac',
zip_safe=True,
test_suite='tracrpc.tests.test_suite',
packages=find_packages(exclude=['*.tests']),
package_data={
'tracrpc': ['templates/*.html', 'htdocs/*.js', 'htdocs/*.css',
'locale/*/LC_MESSAGES/*.mo']
},
classifiers=[
'Framework :: Trac',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
entry_points={
'trac.plugins': 'TracXMLRPC = tracrpc',
},
**extra)
|