django-users-iag-usp 0.1.0__tar.gz → 0.1.2__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 (18) hide show
  1. {django_users_iag_usp-0.1.0 → django_users_iag_usp-0.1.2}/PKG-INFO +2 -2
  2. {django_users_iag_usp-0.1.0 → django_users_iag_usp-0.1.2}/pyproject.toml +13 -3
  3. django_users_iag_usp-0.1.0/src/ldap/migrations/0001_initial.py +0 -46
  4. django_users_iag_usp-0.1.0/src/ldap/migrations/0002_alter_ldapuser_created_at_alter_ldapuser_updated_at.py +0 -23
  5. django_users_iag_usp-0.1.0/tests/__init__.py +0 -0
  6. {django_users_iag_usp-0.1.0 → django_users_iag_usp-0.1.2}/.gitignore +0 -0
  7. {django_users_iag_usp-0.1.0 → django_users_iag_usp-0.1.2}/.python-version +0 -0
  8. {django_users_iag_usp-0.1.0 → django_users_iag_usp-0.1.2}/README.md +0 -0
  9. {django_users_iag_usp-0.1.0 → django_users_iag_usp-0.1.2}/manage.py +0 -0
  10. {django_users_iag_usp-0.1.0 → django_users_iag_usp-0.1.2}/src/__init__.py +0 -0
  11. {django_users_iag_usp-0.1.0 → django_users_iag_usp-0.1.2}/src/ldap/__init__.py +0 -0
  12. {django_users_iag_usp-0.1.0 → django_users_iag_usp-0.1.2}/src/ldap/admin.py +0 -0
  13. {django_users_iag_usp-0.1.0 → django_users_iag_usp-0.1.2}/src/ldap/apps.py +0 -0
  14. {django_users_iag_usp-0.1.0 → django_users_iag_usp-0.1.2}/src/ldap/models.py +0 -0
  15. {django_users_iag_usp-0.1.0/src/ldap/migrations → django_users_iag_usp-0.1.2/tests}/__init__.py +0 -0
  16. {django_users_iag_usp-0.1.0 → django_users_iag_usp-0.1.2}/tests/conftest.py +0 -0
  17. {django_users_iag_usp-0.1.0 → django_users_iag_usp-0.1.2}/tests/test_ldap_models.py +0 -0
  18. {django_users_iag_usp-0.1.0 → django_users_iag_usp-0.1.2}/uv.lock +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: django-users-iag-usp
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: Add your description here
5
5
  Author-email: Marcelo Schneider <schenider.fei@gmail.com>
6
6
  License: MIT
@@ -10,4 +10,4 @@ Classifier: Framework :: Django :: 4.2
10
10
  Classifier: Framework :: Django :: 5.0
11
11
  Classifier: Programming Language :: Python :: 3
12
12
  Requires-Python: >=3.13
13
- Requires-Dist: django>=6.0.1
13
+ Requires-Dist: django>=5.2.10
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "django-users-iag-usp"
3
- version = "0.1.0"
3
+ version = "0.1.2"
4
4
  description = "Add your description here"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.13"
@@ -19,7 +19,7 @@ classifiers = [
19
19
  ]
20
20
 
21
21
  dependencies = [
22
- "django>=6.0.1",
22
+ "django>=5.2.10",
23
23
  ]
24
24
 
25
25
  [dependency-groups]
@@ -34,4 +34,14 @@ build-backend = "hatchling.build"
34
34
  pythonpath = ["src"]
35
35
 
36
36
  [tool.hatch.build.targets.wheel]
37
- packages = ["src/ldap"]
37
+ packages = ["src/ldap"]
38
+ exclude = [
39
+ "**/migrations",
40
+ "**/__pycache__",
41
+ ]
42
+
43
+ [tool.hatch.build.targets.sdist]
44
+ exclude = [
45
+ "**/migrations",
46
+ "**/__pycache__",
47
+ ]
@@ -1,46 +0,0 @@
1
- # Generated by Django 6.0.1 on 2026-01-20 13:05
2
-
3
- import django.contrib.auth.models
4
- import django.contrib.auth.validators
5
- import django.utils.timezone
6
- from django.db import migrations, models
7
-
8
-
9
- class Migration(migrations.Migration):
10
-
11
- initial = True
12
-
13
- dependencies = [
14
- ('auth', '0012_alter_user_first_name_max_length'),
15
- ]
16
-
17
- operations = [
18
- migrations.CreateModel(
19
- name='LdapUser',
20
- fields=[
21
- ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
22
- ('password', models.CharField(max_length=128, verbose_name='password')),
23
- ('last_login', models.DateTimeField(blank=True, null=True, verbose_name='last login')),
24
- ('is_superuser', models.BooleanField(default=False, help_text='Designates that this user has all permissions without explicitly assigning them.', verbose_name='superuser status')),
25
- ('username', models.CharField(error_messages={'unique': 'A user with that username already exists.'}, help_text='Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.', max_length=150, unique=True, validators=[django.contrib.auth.validators.UnicodeUsernameValidator()], verbose_name='username')),
26
- ('first_name', models.CharField(blank=True, max_length=150, verbose_name='first name')),
27
- ('last_name', models.CharField(blank=True, max_length=150, verbose_name='last name')),
28
- ('email', models.EmailField(blank=True, max_length=254, verbose_name='email address')),
29
- ('is_staff', models.BooleanField(default=False, help_text='Designates whether the user can log into this admin site.', verbose_name='staff status')),
30
- ('is_active', models.BooleanField(default=True, help_text='Designates whether this user should be treated as active. Unselect this instead of deleting accounts.', verbose_name='active')),
31
- ('date_joined', models.DateTimeField(default=django.utils.timezone.now, verbose_name='date joined')),
32
- ('groups', models.TextField()),
33
- ('created_at', models.DateField()),
34
- ('updated_at', models.DateField()),
35
- ('user_permissions', models.ManyToManyField(blank=True, help_text='Specific permissions for this user.', related_name='user_set', related_query_name='user', to='auth.permission', verbose_name='user permissions')),
36
- ],
37
- options={
38
- 'verbose_name': 'user',
39
- 'verbose_name_plural': 'users',
40
- 'abstract': False,
41
- },
42
- managers=[
43
- ('objects', django.contrib.auth.models.UserManager()),
44
- ],
45
- ),
46
- ]
@@ -1,23 +0,0 @@
1
- # Generated by Django 6.0.1 on 2026-01-20 13:35
2
-
3
- from django.db import migrations, models
4
-
5
-
6
- class Migration(migrations.Migration):
7
-
8
- dependencies = [
9
- ('ldap', '0001_initial'),
10
- ]
11
-
12
- operations = [
13
- migrations.AlterField(
14
- model_name='ldapuser',
15
- name='created_at',
16
- field=models.DateField(auto_now_add=True),
17
- ),
18
- migrations.AlterField(
19
- model_name='ldapuser',
20
- name='updated_at',
21
- field=models.DateField(auto_now=True),
22
- ),
23
- ]
File without changes