source: peerreviewplugin/tags/2.1-toddler-rc1/setup.py

Last change on this file was 3800, checked in by Sebastian Marek, 15 years ago

Tweaking stuff for setup tools

File size: 831 bytes
Line 
1#!/usr/bin/env python
2# -*- coding: iso-8859-1 -*-
3
4from setuptools import setup
5
6setup(
7    name = 'TracCodeReview',
8    version = '2.1-toddler',
9    packages = ['codereview'],
10    package_data={ 'codereview' : ['templates/*.cs',
11                                   'templates/*.html',
12                                   'htdocs/images/*.*',
13                                   'htdocs/js/*.js' ] },
14    author = "Team5",
15    author_email = "UNKNOWN",
16    maintainer = "Sebastian Marek",
17    maintainer_email = "smarek@plus.net",
18    description = "Framework for realtime code review within Trac.",
19    license = "BSD",
20    keywords = "trac plugin code peer review",
21    url = "http://trac-hacks.org/wiki/PeerReviewPlugin",
22
23    entry_points = {
24        'trac.plugins': [
25            'codereview = codereview',
26        ],
27    },
28
29)
Note: See TracBrowser for help on using the repository browser.