alex / pyvcs

A pure python abstraction layer of multiple VCS, very lightweight.

This URL has Read+Write access

pyvcs / setup.py
100644 19 lines (17 sloc) 0.594 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup, find_packages
 
setup(
    name = 'pyvcs',
    version = '0.2.0',
    author = 'Alex Gaynor, Justin Lilly',
    author_email = 'alex.gaynor@gmail.com',
    description = "A lightweight abstraction layer over multiple VCSs.",
    url = 'http://github.com/alex/pyvcs/',
    packages = find_packages(),
    classifiers = [
        'Development Status :: 4 - Beta',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: BSD License',
        'Programming Language :: Python',
        'Topic :: Software Development :: Version Control'
    ],
)