-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
executable file
·41 lines (38 loc) · 1.19 KB
/
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
36
37
38
39
40
41
#!/usr/bin/python3
import os.path
from setuptools import setup
# Utility function to read the README file.
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = 'TracStats',
version = '0.7.1',
description = "A Trac plugin for project statistics",
long_description = read('README.md'),
author = "John Benediktsson, Dirk Stöcker",
author_email = 'trac@dstoecker.de',
url = "https://github.com/trac-hacks/tracstats",
download_url = "https://github.com/trac-hacks/tracstats/zipball/master#egg=TracStats-0.7.0",
packages=['tracstats'],
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Trac",
"License :: OSI Approved :: BSD License",
],
package_data={
'tracstats': [
'htdocs/*.css',
'htdocs/*.png',
'htdocs/*.gif',
'htdocs/*.js',
'templates/*.html'
]
},
entry_points = {
'trac.plugins': [
'tracstats.web_ui = tracstats.web_ui',
]
},
install_requires=['Trac>=1.6'],
dependency_links = ['http://github.com/trac-hacks/tracstats/zipball/master#egg=TracStats-0.7.0']
)