- Update HISTORY.rst
- Update version number in
my_project/__init__.py - Update version number in
setup.py - Install the package again for local development, but with the new version number:
python setup.py develop
- Run the tests:
python setup.py test
| class LoginForm(forms.Form): | |
| username = forms.CharField(label="Username", max_length=30) | |
| password = forms.CharField(label="Password", widget=forms.PasswordInput) | |
| @property | |
| def helper(self): | |
| form = LoginForm() | |
| helper = FormHelper() | |
| reset = Reset('','Reset') |
| #TODO: write! |
my_project/__init__.pysetup.pypython setup.py develop
python setup.py test