source: remoteticketplugin/0.12/setup.py

Last change on this file was 9412, checked in by Alex Willmer, 13 years ago

Initial skeleton

  • Property svn:executable set to *
File size: 755 bytes
RevLine 
[9412]1#!/usr/bin/env python
2
3from setuptools import setup
4
5setup(
6    name='TracRemoteTicket', 
7    version='0.1',
8    description='Link trac tickets to others in remote Trac instances',
9    long_description='',
10   
11    author='',
12    author_email='',
13   
14    url='http://trac-hacks.org/wiki/RemoteTicketPlugin',
15    classifiers=[],
16    license='',
17   
18    install_requires = [
19        'Trac>=0.12',
20        ],
21   
22    packages=['tracremoteticket'],
23    package_data={
24       'tracremoteticket': [
25            'templates/*.html',
26            'htdocs/js/*.js',
27            'htdocs/css/*.css',
28            ]
29        },
30           
31    entry_points = {
32        'trac.plugins' : [
33            'tracremoteticket = tracremoteticket',
34            ],
35        },
36)
Note: See TracBrowser for help on using the repository browser.