File: setup.py

package info (click to toggle)
trac-wikitablemacro 1%3A0.2-3
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 156 kB
  • ctags: 18
  • sloc: python: 95; makefile: 2
file content (32 lines) | stat: -rw-r--r-- 977 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2008 Martin Aspeli <optilude@gmail.com>
# Copyright (C) 2012-2013 Ryan J Ollos <ryan.j.ollos@gmail.com>
# All rights reserved.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution.
#

from setuptools import setup

setup(
    name = 'WikiTableMacro',
    author = 'Martin Aspeli',
    author_email = 'optilude@gmail.com',
    maintainer = 'Ryan J Ollos',
    maintainer_email = 'ryan.j.ollos@gmail.com',
    description = 'Trac plugin for drawing a table from a SQL query in a wiki page',
    url = 'http://trac-hacks.org/wiki/WikiTableMacro',
    version = '0.2',
    license='BSD 3-Clause',
    packages=['wikitable'],
    package_data={'wikitable': ['htdocs/css/*.css',]},
    entry_points = {
        'trac.plugins': [
            'wikitable.table = wikitable.table',
            'wikitable.scalar = wikitable.scalar'
        ]
    },
)