Skip to content

Commit 43be57b

Browse files
committed
rename project and update setup
1 parent c1b7233 commit 43be57b

File tree

7 files changed

+66
-17
lines changed

7 files changed

+66
-17
lines changed

README.rst

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
Django reset migrations
2+
=======================
3+
4+
Add one command to reset the django migrations.
5+
6+
Sometimes you have one app that had a lot migrations in development
7+
process. And this migrations could be deleted, because anybody will need
8+
this in the future.
9+
10+
Soo, could be stressfull delete the files, reset the database and create
11+
the first migration again ... to start to developer again and bla bla
12+
bla ...
13+
14+
Because this, I made this command to reset the migrations and start the
15+
first migration.
16+
17+
I hope be usefull to you 2 :D
18+
19+
To install
20+
----------
21+
22+
::
23+
24+
pip install django-reset-migrations
25+
26+
Install package in your INSTALL\_APPS
27+
28+
::
29+
30+
settings.py
31+
32+
INSTALL_APPS = (
33+
...
34+
'resetmigrations',
35+
.....
36+
)
37+
38+
Usage
39+
-----
40+
41+
::
42+
43+
python manage.py reset_migration crm
44+
45+
or
46+
47+
python manage.py reset_migration app1 app2
48+
49+
or
50+
51+
python manage.py reset_migration app1 app2 --cached
52+
53+
Options
54+
-------
55+
56+
**--cached**: Don´t delete the migrations files in apps
File renamed without changes.

reset_migrations/management/__init__.py

Whitespace-only changes.

reset_migrations/management/commands/__init__.py

Whitespace-only changes.

resetmigrations/tests.py

-3
This file was deleted.

setup.py

+10-14
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# -*- coding: utf-8 -*-
33

44
import os
5-
from setuptools import setup, find_packages
5+
from setuptools import setup
66

7-
import resetmigrations
7+
import reset_migrations
88

99

1010
def readme():
@@ -20,31 +20,27 @@ def readme():
2020
'django>=1.7',
2121
]
2222

23-
tests_require = [
24-
'pytest',
25-
'pytest-django',
26-
'pytest-cov',
27-
]
28-
29-
3023
setup(
3124
name='django-reset-migrations',
3225
url='https://github.com/valdergallo/django_reset_migrations',
33-
download_url='https://github.com/valdergallo/django_reset_migrations/tarball/%s/' % resetmigrations.__version__,
26+
download_url='https://github.com/valdergallo/django_reset_migrations/tarball/%s/' % reset_migrations.__version__,
3427
author="valdergallo",
3528
author_email='[email protected]',
3629
keywords='Django reset migrations',
3730
description='Add one command to reset the migrations of one or more app',
3831
license='Apache Version 2',
3932
long_description=readme(),
40-
tests_require=tests_require,
4133
classifiers=[
4234
'Framework :: Django',
4335
'Operating System :: OS Independent',
4436
'Topic :: Utilities'
4537
],
46-
version=resetmigrations.__version__,
38+
version=reset_migrations.__version__,
4739
install_requires=install_requires,
48-
package_dir={'': '.'},
49-
packages=find_packages('.', exclude=['tests', '*.tests', 'docs', 'example', 'media']),
40+
include_package_data=True,
41+
packages=[
42+
'reset_migrations',
43+
'reset_migrations.management',
44+
'reset_migrations.management.commands',
45+
],
5046
)

0 commit comments

Comments
 (0)