File tree Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change
1
+ # -*- coding: utf-8 -*-
2
+ from __future__ import absolute_import , unicode_literals
3
+
4
+ """
5
+ Release logic:
6
+ 1. Bump the __version__.
7
+ 2. git add formit/__init__.py
8
+ 3. git commit -m 'Bump to <version>'
9
+ 4. git push
10
+ 5. Make sure all tests pass on https://travis-ci.org/dinoperovic/django-formit
11
+ 6. git tag <version>
12
+ 7. git push --tags
13
+ 8. python setup.py sdist
14
+ 9. twine upload dist/django-formit-<version>.tar.gz
15
+ 10. Done!
16
+ """
17
+ __version__ = '0.1.0'
18
+
19
+ default_app_config = 'formit.apps.FormitConfig'
Original file line number Diff line number Diff line change
1
+ # -*- coding: utf-8 -*-
2
+ from __future__ import absolute_import , unicode_literals
3
+
4
+ from django .apps import AppConfig
5
+ from django .utils .translation import ugettext_lazy as _
6
+
7
+
8
+ class FormitConfig (AppConfig ):
9
+ name = 'formit'
10
+ verbose_name = _ ('Formit' )
You can’t perform that action at this time.
0 commit comments