forked from django-denorm/django-denorm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 1.06 KB
/
setup.py
File metadata and controls
27 lines (25 loc) · 1.06 KB
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
#!/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'],
)