forked from SoftwareIntrospectionLab/MininGit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·47 lines (43 loc) · 1.68 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
42
43
44
45
46
#!/usr/bin/env python
# Copyright (C) 2010 Chris Lewis
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
# Authors : Chris Lewis <[email protected]>
import os
from setuptools import setup
# Utility function to read the README file.
# Used for the long_description.
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "cvsanaly",
version = "2.2.1",
author = "Chris Lewis",
author_email = "[email protected]",
description = ("A Python library for analyzing source control repositories"),
license = "GPL version 2",
keywords = "cvs svn git source sourcecontrol scm",
url = "https://github.com/Lewisham/cvsanaly",
packages=['pycvsanaly2', 'pycvsanaly2.extensions'],
long_description=read('README.mdown'),
scripts = ["cvsanaly2"],
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Software Development :: Version Control",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Environment :: Console"
],
)