File: setup.py

package info (click to toggle)
trac-xmlrpc 1.0.6%2Bsvn6598-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 308 kB
  • ctags: 427
  • sloc: python: 2,413; cs: 100; makefile: 4
file content (16 lines) | stat: -rw-r--r-- 429 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env python

from setuptools import setup

setup(
    name='TracXMLRPC',
    version='0.1',
    author='Alec Thomas',
    author_email='alec@swapoff.org',
    url='http://trac-hacks.swapoff.org/wiki/XmlRpcPlugin',
    description='XML-RPC interface to Trac',
    zip_safe=True,
    packages=['tracrpc'],
    package_data={'tracrpc': ['templates/*.cs']},
    entry_points={'trac.plugins': 'TracXMLRPC = tracrpc'},
    )