source: multiprojectcommitticketupdaterplugin/1.0/setup.py

Last change on this file was 15727, checked in by Ryan J Ollos, 7 years ago

1.0.0dev: Add license text

Refs #12514.

File size: 837 bytes
RevLine 
[15727]1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3#
4# Copyright (C) 2003-2016 Edgewall Software
5# Copyright (C) 2012 Ruth Trevor-Allen <fleeblewidget@gmail.com>
6# Copyright (C) 2016 Ryan J Ollos <ryan.j.ollos@gmail.com>
7# All rights reserved.
8#
9# This software is licensed as described in the file COPYING, which
10# you should have received as part of this distribution.
11
[11453]12from setuptools import setup
13
14setup(name='MultiProjectCommitTicketUpdater',
[15723]15      version='1.0.0',
[11453]16      description='Multi-project version of commit_updater',
17      author='fleeblewidget',
18      author_email='fleeblewidget@gmail.com',
[15727]19      license='3-Clause BSD',
[11453]20      packages=['multicommitupdater'],
21      entry_points = {
22        'trac.plugins': [
23            'multiprojectcommitticketupdater = multicommitupdater.commitupdater',
24            ],
25        },
26      )
Note: See TracBrowser for help on using the repository browser.