File: setup.py

package info (click to toggle)
trac-datefieldplugin 0.7782-3
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 76 kB
  • sloc: python: 177; makefile: 21
file content (30 lines) | stat: -rw-r--r-- 755 bytes parent folder | download
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
#!/usr/bin/env python
# -*- coding: iso-8859-1 -*-

from setuptools import setup

setup(
    name = 'TracDateField',
    version = '1.0.1',
    packages = ['datefield'],
    package_data = { 'datefield': ['templates/*.html', 'htdocs/css/*.css', 
        'htdocs/js/*.js', 'htdocs/images/*.png' ] },

    author = 'Noah Kantrowitz',
    author_email = 'noah@coderanger.net',
    description = 'Add custom date fields to Trac tickets.',
    license = 'BSD',
    keywords = 'trac plugin ticket',
    url = 'http://trac-hacks.org/wiki/DateFieldPlugin',
    classifiers = [
        'Framework :: Trac',
    ],
    
    install_requires = [],

    entry_points = {
        'trac.plugins': [
            'datefield.filter = datefield.filter',
        ]
    },
)