forked from trac-hacks/TracTicketGraph
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (23 loc) · 753 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
#!/usr/bin/env python
from setuptools import setup
setup(
name = 'TracTicketGraph',
version = '1.0-wordpress',
packages = ['ticketgraph'],
package_data = { 'ticketgraph' : [ 'htdocs/*.*', 'templates/*.*' ] },
author = 'Colin Snover',
author_email = '[email protected]',
description = 'Graphs Trac tickets over time',
long_description = 'A Trac plugin that displays a visual graph of ticket changes over time. Modified by Andrew Nacin.',
license = 'MIT',
keywords = 'trac plugin ticket statistics graph',
classifiers = [
'Framework :: Trac',
],
install_requires = ['Trac'],
entry_points = {
'trac.plugins': [
'ticketgraph = ticketgraph',
],
}
)