micro-users 1.0.2__tar.gz → 1.0.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. {micro_users-1.0.2 → micro_users-1.0.3}/PKG-INFO +4 -4
  2. {micro_users-1.0.2 → micro_users-1.0.3}/micro_users.egg-info/PKG-INFO +4 -4
  3. micro_users-1.0.3/micro_users.egg-info/requires.txt +6 -0
  4. {micro_users-1.0.2 → micro_users-1.0.3}/pyproject.toml +4 -4
  5. {micro_users-1.0.2 → micro_users-1.0.3}/setup.py +2 -2
  6. micro_users-1.0.2/micro_users.egg-info/requires.txt +0 -6
  7. {micro_users-1.0.2 → micro_users-1.0.3}/LICENSE +0 -0
  8. {micro_users-1.0.2 → micro_users-1.0.3}/MANIFEST.in +0 -0
  9. {micro_users-1.0.2 → micro_users-1.0.3}/README.md +0 -0
  10. {micro_users-1.0.2 → micro_users-1.0.3}/micro_users.egg-info/SOURCES.txt +0 -0
  11. {micro_users-1.0.2 → micro_users-1.0.3}/micro_users.egg-info/dependency_links.txt +0 -0
  12. {micro_users-1.0.2 → micro_users-1.0.3}/micro_users.egg-info/top_level.txt +0 -0
  13. {micro_users-1.0.2 → micro_users-1.0.3}/setup.cfg +0 -0
  14. {micro_users-1.0.2 → micro_users-1.0.3}/users/__init__.py +0 -0
  15. {micro_users-1.0.2 → micro_users-1.0.3}/users/admin.py +0 -0
  16. {micro_users-1.0.2 → micro_users-1.0.3}/users/apps.py +0 -0
  17. {micro_users-1.0.2 → micro_users-1.0.3}/users/filters.py +0 -0
  18. {micro_users-1.0.2 → micro_users-1.0.3}/users/forms.py +0 -0
  19. {micro_users-1.0.2 → micro_users-1.0.3}/users/migrations/__init__.py +0 -0
  20. {micro_users-1.0.2 → micro_users-1.0.3}/users/models.py +0 -0
  21. {micro_users-1.0.2 → micro_users-1.0.3}/users/signals.py +0 -0
  22. {micro_users-1.0.2 → micro_users-1.0.3}/users/static/css/login.css +0 -0
  23. {micro_users-1.0.2 → micro_users-1.0.3}/users/tables.py +0 -0
  24. {micro_users-1.0.2 → micro_users-1.0.3}/users/templates/registration/login.html +0 -0
  25. {micro_users-1.0.2 → micro_users-1.0.3}/users/templates/user_activity_log.html +0 -0
  26. {micro_users-1.0.2 → micro_users-1.0.3}/users/templates/users/manage_users.html +0 -0
  27. {micro_users-1.0.2 → micro_users-1.0.3}/users/templates/users/profile.html +0 -0
  28. {micro_users-1.0.2 → micro_users-1.0.3}/users/templates/users/profile_edit.html +0 -0
  29. {micro_users-1.0.2 → micro_users-1.0.3}/users/templates/users/user_actions.html +0 -0
  30. {micro_users-1.0.2 → micro_users-1.0.3}/users/templates/users/user_form.html +0 -0
  31. {micro_users-1.0.2 → micro_users-1.0.3}/users/urls.py +0 -0
  32. {micro_users-1.0.2 → micro_users-1.0.3}/users/views.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: micro_users
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: Arabic Django user management app with abstract user, permissions, and activity logging
5
5
  Home-page: https://github.com/debeski/micro-users
6
6
  Author: DeBeski
@@ -20,10 +20,10 @@ Classifier: Operating System :: OS Independent
20
20
  Requires-Python: >=3.9
21
21
  Description-Content-Type: text/markdown
22
22
  License-File: LICENSE
23
- Requires-Dist: Django>=5.17
23
+ Requires-Dist: Django>=5.1
24
24
  Requires-Dist: django-crispy-forms>=2.4
25
- Requires-Dist: django-tables2>=2.7.5
26
- Requires-Dist: django-filter>=25.1
25
+ Requires-Dist: django-tables2>=2.7
26
+ Requires-Dist: django-filter>=24.3
27
27
  Requires-Dist: pillow>=11.0
28
28
  Requires-Dist: babel>=2.1
29
29
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: micro-users
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: Arabic Django user management app with abstract user, permissions, and activity logging
5
5
  Home-page: https://github.com/debeski/micro-users
6
6
  Author: DeBeski
@@ -20,10 +20,10 @@ Classifier: Operating System :: OS Independent
20
20
  Requires-Python: >=3.9
21
21
  Description-Content-Type: text/markdown
22
22
  License-File: LICENSE
23
- Requires-Dist: Django>=5.17
23
+ Requires-Dist: Django>=5.1
24
24
  Requires-Dist: django-crispy-forms>=2.4
25
- Requires-Dist: django-tables2>=2.7.5
26
- Requires-Dist: django-filter>=25.1
25
+ Requires-Dist: django-tables2>=2.7
26
+ Requires-Dist: django-filter>=24.3
27
27
  Requires-Dist: pillow>=11.0
28
28
  Requires-Dist: babel>=2.1
29
29
 
@@ -0,0 +1,6 @@
1
+ Django>=5.1
2
+ django-crispy-forms>=2.4
3
+ django-tables2>=2.7
4
+ django-filter>=24.3
5
+ pillow>=11.0
6
+ babel>=2.1
@@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"
8
8
 
9
9
  [project]
10
10
  name = "micro_users"
11
- version = "1.0.2"
11
+ version = "1.0.3"
12
12
  description = "Arabic Django user management app with abstract user, permissions, and activity logging"
13
13
  readme = "README.md"
14
14
  requires-python = ">=3.9"
@@ -20,10 +20,10 @@ keywords = ["django", "users", "permissions", "authentication"]
20
20
 
21
21
  # Dependencies
22
22
  dependencies = [
23
- "Django>=5.17",
23
+ "Django>=5.1",
24
24
  "django-crispy-forms>=2.4",
25
- "django-tables2>=2.7.5",
26
- "django-filter>=25.1",
25
+ "django-tables2>=2.7",
26
+ "django-filter>=24.3",
27
27
  "pillow>=11.0",
28
28
  "babel>=2.1",
29
29
  ]
@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
5
5
 
6
6
  setup(
7
7
  name="micro_users",
8
- version="1.0.2",
8
+ version="1.0.3",
9
9
  author="DeBeski",
10
10
  author_email="debeski1@gmail.com",
11
11
  description="Arabic django user management app with abstract user, permissions, and activity logging",
@@ -28,7 +28,7 @@ setup(
28
28
  ],
29
29
  python_requires=">=3.9",
30
30
  install_requires=[
31
- "Django>=5.17",
31
+ "Django>=5.1",
32
32
  "django-crispy-forms>=2.4",
33
33
  "django-tables2>=2.7",
34
34
  "django-filter>=24.3",
@@ -1,6 +0,0 @@
1
- Django>=5.17
2
- django-crispy-forms>=2.4
3
- django-tables2>=2.7.5
4
- django-filter>=25.1
5
- pillow>=11.0
6
- babel>=2.1
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes