forked from trac-hacks/tracstats
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 661 Bytes
/
setup.py
File metadata and controls
30 lines (26 loc) · 661 Bytes
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
#!/usr/bin/env python
from setuptools import setup, find_packages
PACKAGE = 'TracStats'
VERSION = '0.4'
setup(
name = PACKAGE,
version = VERSION,
description = "A plugin for project statistics",
author = "mrjbq7",
url = "http://github.com/mrjbq7/tracstats",
packages=find_packages(exclude=['ez_setup', '*.tests*']),
package_data={
'tracstats': [
'htdocs/*.css',
'htdocs/*.png',
'htdocs/*.gif',
'htdocs/*.js',
'templates/*.html'
]
},
entry_points = {
'trac.plugins': [
'tracstats.web_ui = tracstats.web_ui',
]
}
)