File: setup.py

package info (click to toggle)
trac-xmlrpc 1.1.7%2Br17052-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 320 kB
  • sloc: python: 3,057; cs: 37; makefile: 2
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'},
    )