~ricardokirkner/django-adminaudit/use-setuptools

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Tarmac
  • Author(s): Ricardo Kirkner
  • Date: 2012-01-17 06:36:33 UTC
  • mfrom: (35.1.5 opensource)
  • Revision ID: tarmac@199959-20120117063633-j0q90o4b2de662yt
[r=lukasz-czyzykowski] open-source django-adminaudit

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/env python
2
2
# -*- coding: utf-8 -*-
 
3
# Copyright 2010-2012 Canonical Ltd.  This software is licensed under the
 
4
# GNU Library General Public License version 3 (see the file LICENSE).
3
5
import os
4
6
 
5
7
from distutils.core import setup, Command
23
25
 
24
26
setup(
25
27
    name='django-adminaudit',
26
 
    version='0.1.1',
 
28
    version='0.3.1',
27
29
    description="Extends Django's admin logging capabilities",
28
30
    url='https://launchpad.net/django-adminaudit',
29
31
    author='Łukasz Czyżykowski',
40
42
            'templates/adminaudit/*.txt',
41
43
        ],
42
44
    },
43
 
    license='AGPLv3',
 
45
    license='LGPLv3',
44
46
    cmdclass={'test': TestCommand},
45
47
)