alex / django-vcs

A django application for working with a VCS, analagous to some of Trac's features.

This URL has Read+Write access

django-vcs / setup.py
100644 23 lines (21 sloc) 0.798 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
 
setup(
    name = 'django-vcs',
    version = '0.1',
    author = 'Alex Gaynor, Justin Lilly',
    author_email = 'alex.gaynor@gmail.com',
    description = "A pluggable django application to allow browsing of code repositories.",
    url = 'http://github.com/alex/django-vcs/',
    packages = find_packages(),
    package_data = {'django_vcs': ['templates/django_vcs/*.html'],},
    install_requires = ['pyvcs'],
    classifiers = [
        'Development Status :: 4 - Beta',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: BSD License',
        'Programming Language :: Python',
        'Topic :: Software Development :: Version Control',
        'Environment :: Web Environment',
        'Framework :: Django',
    ],
)