-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 1.28 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
'''
setup.py
Copyright (C) 2009 Nitin Bhide ([email protected])
This module is part of SVNPlot (http://code.google.com/p/svnplot) and is released under
the New BSD License: http://www.opensource.org/licenses/bsd-license.php
--------------------------------------------------------------------------------------
Setup file for installing svnplot
'''
from distutils.core import setup
setup(name='SVNPlot', version ='0.7.6',
description='python module to generate graphs and statistics from Subversion repository data',
author='Nitin Bhide',
author_email='[email protected]',
license = 'http://www.opensource.org/licenses/bsd-license.php',
url='http://code.google.com/p/svnplot',
requires = ['matplotlib', 'numpy', 'pysvn'],
packages=['svnplot'],
package_dir = {'svnplot': 'svnplot'},
package_data= {'svnplot':['readme.txt', 'README', 'javascript/*.js', 'javascript/jqplot/*.*',
'javascript/jqplot/plugins/*.js']},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Version Control"
],
)