-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
30 lines (27 loc) · 842 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2008-2010 Joachim Hoessler <[email protected]>
# 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='TracEstimationTools',
author='Joachim Hoessler',
description='Trac plugin for visualizing and quick editing of effort '
'estimations',
version='0.5.0',
license='BSD',
packages=['estimationtools'],
package_data={'estimationtools': ['htdocs/*.js', 'templates/*.html']},
entry_points={
'trac.plugins': [
'estimationtools = estimationtools'
]
},
test_suite='estimationtools.tests.test_suite',
tests_require=[]
)