forked from rpkilby/jsonfield
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (26 loc) · 942 Bytes
/
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
from distutils.core import setup
from distutils.core import Command
class TestCommand(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
from django.conf import settings
settings.configure(DATABASES={'default': {'NAME': ':memory:',
'ENGINE': 'django.db.backends.sqlite3'}},
INSTALLED_APPS=('jsonfield',))
from django.core.management import call_command
call_command('test', 'jsonfield')
setup(name='jsonfield',
version='0.9.17',
packages=['jsonfield'],
license='MIT',
author='Brad Jasper',
author_email='bjasper@gmail.com',
url='https://github.com/bradjasper/django-jsonfield/',
description='A reusable Django field that allows you to store validated JSON in your model.',
long_description=open("README.rst").read(),
cmdclass={'test': TestCommand},
)