sharedkernel 2.0.1__tar.gz → 2.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 (31) hide show
  1. {sharedkernel-2.0.1 → sharedkernel-2.0.3}/PKG-INFO +13 -4
  2. {sharedkernel-2.0.1 → sharedkernel-2.0.3}/README.md +4 -0
  3. {sharedkernel-2.0.1 → sharedkernel-2.0.3}/setup.py +3 -3
  4. {sharedkernel-2.0.1 → sharedkernel-2.0.3}/sharedkernel.egg-info/PKG-INFO +13 -4
  5. {sharedkernel-2.0.1 → sharedkernel-2.0.3}/sharedkernel.egg-info/requires.txt +2 -2
  6. {sharedkernel-2.0.1 → sharedkernel-2.0.3}/setup.cfg +0 -0
  7. {sharedkernel-2.0.1 → sharedkernel-2.0.3}/sharedkernel/common.py +0 -0
  8. {sharedkernel-2.0.1 → sharedkernel-2.0.3}/sharedkernel/data_format_converter.py +0 -0
  9. {sharedkernel-2.0.1 → sharedkernel-2.0.3}/sharedkernel/database/__init__.py +0 -0
  10. {sharedkernel-2.0.1 → sharedkernel-2.0.3}/sharedkernel/database/mongo_generic_repository.py +0 -0
  11. {sharedkernel-2.0.1 → sharedkernel-2.0.3}/sharedkernel/date_converter.py +0 -0
  12. {sharedkernel-2.0.1 → sharedkernel-2.0.3}/sharedkernel/enum/__init__.py +0 -0
  13. {sharedkernel-2.0.1 → sharedkernel-2.0.3}/sharedkernel/enum/error_code.py +0 -0
  14. {sharedkernel-2.0.1 → sharedkernel-2.0.3}/sharedkernel/exception/__init__.py +0 -0
  15. {sharedkernel-2.0.1 → sharedkernel-2.0.3}/sharedkernel/exception/exception.py +0 -0
  16. {sharedkernel-2.0.1 → sharedkernel-2.0.3}/sharedkernel/exception/exception_handlers.py +0 -0
  17. {sharedkernel-2.0.1 → sharedkernel-2.0.3}/sharedkernel/jwt_service.py +0 -0
  18. {sharedkernel-2.0.1 → sharedkernel-2.0.3}/sharedkernel/normalizer/__init__.py +0 -0
  19. {sharedkernel-2.0.1 → sharedkernel-2.0.3}/sharedkernel/normalizer/number_normalizer.py +0 -0
  20. {sharedkernel-2.0.1 → sharedkernel-2.0.3}/sharedkernel/normalizer/phone_number_normalizer.py +0 -0
  21. {sharedkernel-2.0.1 → sharedkernel-2.0.3}/sharedkernel/objects/__init__.py +0 -0
  22. {sharedkernel-2.0.1 → sharedkernel-2.0.3}/sharedkernel/objects/base_document.py +0 -0
  23. {sharedkernel-2.0.1 → sharedkernel-2.0.3}/sharedkernel/objects/json_string_model.py +0 -0
  24. {sharedkernel-2.0.1 → sharedkernel-2.0.3}/sharedkernel/objects/jwt_model.py +0 -0
  25. {sharedkernel-2.0.1 → sharedkernel-2.0.3}/sharedkernel/objects/result.py +0 -0
  26. {sharedkernel-2.0.1 → sharedkernel-2.0.3}/sharedkernel/regex_masking.py +0 -0
  27. {sharedkernel-2.0.1 → sharedkernel-2.0.3}/sharedkernel/s3_uploader.py +0 -0
  28. {sharedkernel-2.0.1 → sharedkernel-2.0.3}/sharedkernel/string_extentions.py +0 -0
  29. {sharedkernel-2.0.1 → sharedkernel-2.0.3}/sharedkernel.egg-info/SOURCES.txt +0 -0
  30. {sharedkernel-2.0.1 → sharedkernel-2.0.3}/sharedkernel.egg-info/dependency_links.txt +0 -0
  31. {sharedkernel-2.0.1 → sharedkernel-2.0.3}/sharedkernel.egg-info/top_level.txt +0 -0
@@ -1,28 +1,37 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: sharedkernel
3
- Version: 2.0.1
3
+ Version: 2.0.3
4
4
  Summary: sharekernel is a shared package between all python projects
5
5
  Author: Smilinno
6
6
  Description-Content-Type: text/markdown
7
7
  Requires-Dist: numpy
8
8
  Requires-Dist: requests
9
9
  Requires-Dist: pymongo
10
- Requires-Dist: fastapi==0.111.0
10
+ Requires-Dist: fastapi
11
11
  Requires-Dist: PyJWT
12
12
  Requires-Dist: persian_tools
13
13
  Requires-Dist: sentry-sdk
14
14
  Requires-Dist: jdatetime
15
15
  Requires-Dist: persiantools
16
- Requires-Dist: boto3
16
+ Requires-Dist: boto3==1.35.90
17
17
  Requires-Dist: python-docx
18
18
  Requires-Dist: mammoth
19
19
  Requires-Dist: markdown
20
20
  Requires-Dist: beautifulsoup4
21
+ Dynamic: author
22
+ Dynamic: description
23
+ Dynamic: description-content-type
24
+ Dynamic: requires-dist
25
+ Dynamic: summary
21
26
 
22
27
  # SharedKernel
23
28
  this a shared kernel package
24
29
 
25
30
  # Change Log
31
+ ### Version 2.0.3
32
+ - Fix boto3 version
33
+ ### Version 2.0.3
34
+ - Fix FastApi dependency
26
35
  ### Version 2.0.1
27
36
  - Fix minor bugs
28
37
  ### Version 2.0.0
@@ -2,6 +2,10 @@
2
2
  this a shared kernel package
3
3
 
4
4
  # Change Log
5
+ ### Version 2.0.3
6
+ - Fix boto3 version
7
+ ### Version 2.0.3
8
+ - Fix FastApi dependency
5
9
  ### Version 2.0.1
6
10
  - Fix minor bugs
7
11
  ### Version 2.0.0
@@ -23,20 +23,20 @@ setup(
23
23
  "numpy",
24
24
  "requests",
25
25
  "pymongo",
26
- "fastapi==0.111.0",
26
+ "fastapi",
27
27
  "PyJWT",
28
28
  "persian_tools",
29
29
  "sentry-sdk",
30
30
  "jdatetime",
31
31
  "persiantools",
32
- "boto3",
32
+ "boto3==1.35.90",
33
33
  "python-docx",
34
34
  "mammoth",
35
35
  "markdown",
36
36
  "beautifulsoup4"
37
37
  ],
38
38
  # *strongly* suggested for sharing
39
- version="2.0.1",
39
+ version="2.0.3",
40
40
  description="sharekernel is a shared package between all python projects",
41
41
  long_description=long_description,
42
42
  long_description_content_type="text/markdown",
@@ -1,28 +1,37 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: sharedkernel
3
- Version: 2.0.1
3
+ Version: 2.0.3
4
4
  Summary: sharekernel is a shared package between all python projects
5
5
  Author: Smilinno
6
6
  Description-Content-Type: text/markdown
7
7
  Requires-Dist: numpy
8
8
  Requires-Dist: requests
9
9
  Requires-Dist: pymongo
10
- Requires-Dist: fastapi==0.111.0
10
+ Requires-Dist: fastapi
11
11
  Requires-Dist: PyJWT
12
12
  Requires-Dist: persian_tools
13
13
  Requires-Dist: sentry-sdk
14
14
  Requires-Dist: jdatetime
15
15
  Requires-Dist: persiantools
16
- Requires-Dist: boto3
16
+ Requires-Dist: boto3==1.35.90
17
17
  Requires-Dist: python-docx
18
18
  Requires-Dist: mammoth
19
19
  Requires-Dist: markdown
20
20
  Requires-Dist: beautifulsoup4
21
+ Dynamic: author
22
+ Dynamic: description
23
+ Dynamic: description-content-type
24
+ Dynamic: requires-dist
25
+ Dynamic: summary
21
26
 
22
27
  # SharedKernel
23
28
  this a shared kernel package
24
29
 
25
30
  # Change Log
31
+ ### Version 2.0.3
32
+ - Fix boto3 version
33
+ ### Version 2.0.3
34
+ - Fix FastApi dependency
26
35
  ### Version 2.0.1
27
36
  - Fix minor bugs
28
37
  ### Version 2.0.0
@@ -1,13 +1,13 @@
1
1
  numpy
2
2
  requests
3
3
  pymongo
4
- fastapi==0.111.0
4
+ fastapi
5
5
  PyJWT
6
6
  persian_tools
7
7
  sentry-sdk
8
8
  jdatetime
9
9
  persiantools
10
- boto3
10
+ boto3==1.35.90
11
11
  python-docx
12
12
  mammoth
13
13
  markdown
File without changes