File: setup.py

package info (click to toggle)
trac-datefield 1%3A3.0.0%2Br16195-1
  • links: PTS
  • area: main
  • in suites: buster
  • size: 260 kB
  • ctags: 60
  • sloc: python: 166; makefile: 2
file content (33 lines) | stat: -rw-r--r-- 879 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
31
32
33
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2007-2008 Noah Kantrowitz <noah@coderanger.net>
#
# 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='TracDateField',
    version='3.0.0',
    author='Noah Kantrowitz',
    author_email='noah@coderanger.net',
    maintainer='Ryan J Ollos',
    maintainer_email='ryan.j.ollos@gmail.com',
    description='Add custom date fields to Trac tickets.',
    license='3-Clause BSD',
    keywords='trac plugin ticket',
    url='https://trac-hacks.org/wiki/DateFieldPlugin',
    packages=['datefield'],
    install_requires=['Trac'],
    classifiers=[
        'Framework :: Trac',
    ],
    entry_points={
        'trac.plugins': [
            'datefield.filter = datefield.filter',
        ]
    },
)