source: quietplugin/0.12/setup.py

Last change on this file was 15123, checked in by Ryan J Ollos, 8 years ago

1.0.2: Remove tag_svn_revision from setup.cfg

This attribute isn't supported in setuptools >= 10.

Bump version to 1.0.2.

File size: 776 bytes
RevLine 
[11094]1#!/usr/bin/python
[10852]2# -*- coding: utf-8 -*-
[13539]3#
[14029]4# Copyright (C) 2011-2012 Rob Guttman <guttman@alum.mit.edu>
[13539]5# All rights reserved.
6#
7# This software is licensed as described in the file COPYING, which
8# you should have received as part of this distribution.
[14029]9#
[10852]10
11from setuptools import setup, find_packages
12
13PACKAGE = 'TracQuiet'
[15123]14VERSION = '1.0.2'
[10852]15
16setup(
[13538]17    name=PACKAGE,
18    version=VERSION,
[10852]19    description='Toggles quiet (no email) mode for Announcer plugin',
[13538]20    author="Rob Guttman",
21    author_email="guttman@alum.mit.edu",
[14029]22    license='3-Clause BSD',
[15123]23    url='https://trac-hacks.org/wiki/QuietPlugin',
[13538]24    packages=['quiet'],
25    package_data={'quiet': ['htdocs/*.js', 'htdocs/*.css', 'htdocs/*.png']},
26    entry_points={'trac.plugins': ['quiet.web_ui = quiet.web_ui']}
[10852]27)
Note: See TracBrowser for help on using the repository browser.