-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eb85b4f
commit f4128db
Showing
15 changed files
with
74 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,38 @@ | ||
# Generated by Django 2.0.3 on 2018-10-25 18:51 | ||
|
||
from django.db import migrations, models | ||
import picklefield.fields | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
initial = True | ||
|
||
dependencies = [ | ||
] | ||
dependencies = [] | ||
|
||
operations = [ | ||
migrations.CreateModel( | ||
name='SettySettings', | ||
fields=[ | ||
('name', models.CharField(max_length=190, primary_key=True, serialize=False)), | ||
('value', picklefield.fields.PickledObjectField(editable=False)), | ||
('type', models.CharField(choices=[('bool', 'Bool'), ('dict', 'Dict'), ('float', 'Float'), ('integer', 'Integer'), ('list', 'List'), ('string', 'String')], max_length=8)), | ||
( | ||
'type', | ||
models.CharField( | ||
choices=[ | ||
('bool', 'Bool'), | ||
('dict', 'Dict'), | ||
('float', 'Float'), | ||
('integer', 'Integer'), | ||
('list', 'List'), | ||
('string', 'String'), | ||
], | ||
max_length=8, | ||
), | ||
), | ||
('created_time', models.DateTimeField(auto_now_add=True)), | ||
('updated_time', models.DateTimeField(auto_now=True)), | ||
], | ||
options={ | ||
'verbose_name': 'Setty Settings', | ||
'verbose_name_plural': 'Setty Settings', | ||
}, | ||
options={'verbose_name': 'Setty Settings', 'verbose_name_plural': 'Setty Settings', }, | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,23 +12,16 @@ | |
|
||
setup( | ||
name='django-setty', | ||
|
||
version='3.2.0', | ||
|
||
author='Michael England', | ||
author_email='[email protected]', | ||
|
||
license='Apache License Version 2.0', | ||
|
||
packages=['setty', 'setty.migrations'], | ||
include_package_data=True, | ||
|
||
url='https://github.com/mikeengland/django-setty', | ||
|
||
description='Django app allowing users to configure settings dynamically in the Admin screen', | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
|
||
classifiers=[ | ||
'License :: OSI Approved :: Apache Software License', | ||
'Development Status :: 5 - Production/Stable', | ||
|