forked from incuna/django-denorm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
24 lines (22 loc) · 1.01 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
#!/usr/bin/python
from setuptools import setup, find_packages
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='James Turnbull & Christian Schilling',
author_email='james@incuna.com',
url='http://github.com/incuna/django-denorm/',
download_url='http://github.com/incuna/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.postgresql_psycopg2', 'denorm.db.sqlite3', 'denorm.management', 'denorm.management.commands'],
)