source: changelogmacro/branches/0.11/setup.py

Last change on this file was 12377, checked in by Ryan J Ollos, 11 years ago

Refs #9813: Added file containing the 3-Clause BSD license text.

File size: 916 bytes
RevLine 
[7920]1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
[12376]3#
4# Copyright (C) 2006-2008 Alec Thomas
5# Copyright (C) 2010-2012 Ryan J Ollos <ryan.j.ollos@gmail.com>
6# All rights reserved.
7#
8# This software is licensed as described in the file COPYING, which
9# you should have received as part of this distribution.
10#
[7920]11
12from setuptools import setup
13
14setup(
15    name = 'ChangeLogMacro',
16    version = '0.2',
17    packages = ['changelog'],
18    author = 'Alec Thomas',
19    maintainer = 'Ryan Ollos',
[12377]20    maintainer_email = 'ryan.j.ollos@gmail.com',
[7920]21    description = 'Adds a Wiki macro that displays the changelog for a repository path',
22    keywords = 'trac scm macro plugin',
[12376]23    license = '3-Clause BSD',
[7920]24    url = 'http://trac-hacks.org/wiki/ChangeLogMacro',
25    entry_points = {
26        'trac.plugins':[
27            'changelog.ChangeLogMacro = changelog.ChangeLogMacro'
28        ]
29    },
[7923]30    install_requires = ['Trac <= 0.11.7'],
[7920]31)
Note: See TracBrowser for help on using the repository browser.