source: hidefieldchangesplugin/0.12/setup.py

Last change on this file was 12527, checked in by matobaa, 11 years ago

HideFieldChangesPlugin: PEP8 cleanup

File size: 680 bytes
RevLine 
[11237]1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3
4from setuptools import setup, find_packages
5
6setup(
7    name='HideFieldChanges',
8    version='0.1',
9    license='Modified BSD',
10    author='MATOBA Akihiro',
11    author_email='matobaa+trac-hacks@gmail.com',
12    url='http://trac-hacks.org/wiki/matobaa',
13    description='hide field changes in ticket history',
14    zip_safe=False,
15    packages=find_packages(exclude=['*.tests']),
16    include_package_data=True,
[12527]17    package_data={'hidefieldchanges': [
[11237]18                      'templates/*.html',
[12527]19                      'htdocs/*/*']},
[11237]20    entry_points={
21        'trac.plugins': 'HideFieldChanges = hidefieldchanges.ticket'
22        },
23    )
Note: See TracBrowser for help on using the repository browser.