forked from SoftwareIntrospectionLab/repositoryhandler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 908 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
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 = "repositoryhandler",
version = "0.3.4",
author = "Chris Lewis",
author_email = "cflewis@soe.ucsc.edu",
description = ("A Python library for accessing source control repositories"),
license = "GPL",
keywords = "cvs svn git source sourcecontrol scm",
url = "https://github.com/Lewisham/repositoryhandler",
packages=['repositoryhandler', 'repositoryhandler/backends', 'tests'],
long_description=read('README.mdown'),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Software Development :: Version Control",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Environment :: Console"
],
)