forked from django-denorm/django-denorm
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
37 lines (35 loc) · 1.17 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/python
from setuptools import setup
setup(
name='django-denorm',
version='0.2.0',
description='Denormalization magic for Django',
long_description='django-denorm is a Django application to provide automatic management of denormalized database fields.',
author=', '.join((
'Christian Schilling <initcrash@gmail.com>',
'James Turnbull <james@incuna.com>',
)),
author_email='django-denorm@googlegroups.com',
url='http://initcrash.github.com/django-denorm/',
download_url='http://github.com/initcrash/django-denorm/downloads',
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Topic :: Software Development"
],
packages=[
'denorm',
'denorm.db',
'denorm.db.mysql',
'denorm.db.postgresql',
'denorm.db.sqlite3',
'denorm.management',
'denorm.management.commands',
'denorm.migrations',
'denorm.tests',
],
)