File: setup.py

package info (click to toggle)
python-django-dmigrations 0.3.1%2Bsvn29-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 248 kB
  • ctags: 234
  • sloc: python: 1,614; makefile: 16
file content (16 lines) | stat: -rw-r--r-- 362 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# -*- coding: utf-8 -*-
from distutils.core import setup

setup(
    name = 'dmigrations',
    version = "0.3.1",
    packages = [
        'dmigrations',
        'dmigrations.management',
        'dmigrations.management.commands',
        'dmigrations.sqlite3',
        'dmigrations.postgresql',
        'dmigrations.mysql',
        'dmigrations.tests',
    ],
)