-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
35 lines (32 loc) · 989 Bytes
/
setup.py
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
34
35
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2012 Colin Snover
# 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='TracTicketGraph',
version='1.0.6',
packages=['ticketgraph'],
package_data={'ticketgraph': ['htdocs/*.*', 'templates/*.*']},
author='Colin Snover',
author_email='[email protected]',
description='Graphs Trac tickets over time',
url='https://github.com/trac-hacks/TracTicketGraph',
long_description="A Trac plugin that displays a visual graph of ticket "
"changes over time.",
license='MIT',
keywords='trac plugin ticket statistics graph',
classifiers=[
'Framework :: Trac',
],
install_requires=['Trac'],
entry_points={
'trac.plugins': [
'ticketgraph = ticketgraph.ticketgraph',
],
}
)