| Line | |
|---|
| 1 | #!/usr/bin/env python |
|---|
| 2 | # -*- coding: utf-8 -*- |
|---|
| 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 | # |
|---|
| 11 | |
|---|
| 12 | from setuptools import setup |
|---|
| 13 | |
|---|
| 14 | setup( |
|---|
| 15 | name = 'ChangeLogMacro', |
|---|
| 16 | version = '0.2', |
|---|
| 17 | packages = ['changelog'], |
|---|
| 18 | author = 'Alec Thomas', |
|---|
| 19 | maintainer = 'Ryan Ollos', |
|---|
| 20 | maintainer_email = 'ryan.j.ollos@gmail.com', |
|---|
| 21 | description = 'Adds a Wiki macro that displays the changelog for a repository path', |
|---|
| 22 | keywords = 'trac scm macro plugin', |
|---|
| 23 | license = '3-Clause BSD', |
|---|
| 24 | url = 'http://trac-hacks.org/wiki/ChangeLogMacro', |
|---|
| 25 | entry_points = { |
|---|
| 26 | 'trac.plugins':[ |
|---|
| 27 | 'changelog.ChangeLogMacro = changelog.ChangeLogMacro' |
|---|
| 28 | ] |
|---|
| 29 | }, |
|---|
| 30 | install_requires = ['Trac <= 0.11.7'], |
|---|
| 31 | ) |
|---|
Note: See
TracBrowser
for help on using the repository browser.