skoll 0.0.1__tar.gz → 0.1.1__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. {skoll-0.0.1 → skoll-0.1.1}/.gitignore +1 -0
  2. {skoll-0.0.1 → skoll-0.1.1}/PKG-INFO +1 -1
  3. {skoll-0.0.1 → skoll-0.1.1}/pyproject.toml +8 -2
  4. skoll-0.1.1/src/skoll/_version.py +34 -0
  5. skoll-0.0.1/.secrets +0 -1
  6. {skoll-0.0.1 → skoll-0.1.1}/.python-version +0 -0
  7. {skoll-0.0.1 → skoll-0.1.1}/.vscode/settings.json +0 -0
  8. {skoll-0.0.1 → skoll-0.1.1}/LICENSE +0 -0
  9. {skoll-0.0.1 → skoll-0.1.1}/README.md +0 -0
  10. {skoll-0.0.1 → skoll-0.1.1}/src/skoll/__init__.py +0 -0
  11. {skoll-0.0.1 → skoll-0.1.1}/src/skoll/application/__init__.py +0 -0
  12. {skoll-0.0.1 → skoll-0.1.1}/src/skoll/application/protocols.py +0 -0
  13. {skoll-0.0.1 → skoll-0.1.1}/src/skoll/application/types.py +0 -0
  14. {skoll-0.0.1 → skoll-0.1.1}/src/skoll/config.py +0 -0
  15. {skoll-0.0.1 → skoll-0.1.1}/src/skoll/domain/__init__.py +0 -0
  16. {skoll-0.0.1 → skoll-0.1.1}/src/skoll/domain/base.py +0 -0
  17. {skoll-0.0.1 → skoll-0.1.1}/src/skoll/domain/enums.py +0 -0
  18. {skoll-0.0.1 → skoll-0.1.1}/src/skoll/domain/objects.py +0 -0
  19. {skoll-0.0.1 → skoll-0.1.1}/src/skoll/domain/primitives.py +0 -0
  20. {skoll-0.0.1 → skoll-0.1.1}/src/skoll/errors.py +0 -0
  21. {skoll-0.0.1 → skoll-0.1.1}/src/skoll/infras/__init__.py +0 -0
  22. {skoll-0.0.1 → skoll-0.1.1}/src/skoll/infras/mediator/__init__.py +0 -0
  23. {skoll-0.0.1 → skoll-0.1.1}/src/skoll/infras/mediator/basic.py +0 -0
  24. {skoll-0.0.1 → skoll-0.1.1}/src/skoll/infras/mediator/nats.py +0 -0
  25. {skoll-0.0.1 → skoll-0.1.1}/src/skoll/infras/mediator/utils.py +0 -0
  26. {skoll-0.0.1 → skoll-0.1.1}/src/skoll/infras/postgresql.py +0 -0
  27. {skoll-0.0.1 → skoll-0.1.1}/src/skoll/infras/spicedb.py +0 -0
  28. {skoll-0.0.1 → skoll-0.1.1}/src/skoll/result.py +0 -0
  29. {skoll-0.0.1 → skoll-0.1.1}/src/skoll/utils/__init__.py +0 -0
  30. {skoll-0.0.1 → skoll-0.1.1}/src/skoll/utils/dep_injection.py +0 -0
  31. {skoll-0.0.1 → skoll-0.1.1}/src/skoll/utils/functional.py +0 -0
  32. {skoll-0.0.1 → skoll-0.1.1}/uv.lock +0 -0
@@ -8,3 +8,4 @@ wheels/
8
8
 
9
9
  # Virtual environments
10
10
  .venv
11
+ .secrets
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: skoll
3
- Version: 0.0.1
3
+ Version: 0.1.1
4
4
  Summary: A simple package that provide a basic API python framework based on starlette and some domain driven design concepts
5
5
  Author-email: Monzon Diarra <diarramonzon4@gmail.com>
6
6
  License-File: LICENSE
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "skoll"
3
- version = "0.0.1"
3
+ dynamic = ["version"]
4
4
  description = "A simple package that provide a basic API python framework based on starlette and some domain driven design concepts"
5
5
  readme = "README.md"
6
6
  authors = [
@@ -20,9 +20,15 @@ dependencies = [
20
20
  skoll = "skoll:main"
21
21
 
22
22
  [build-system]
23
- requires = ["hatchling"]
23
+ requires = ["hatchling", "hatch-vcs"]
24
24
  build-backend = "hatchling.build"
25
25
 
26
+ [tool.hatch.version]
27
+ source = "vcs"
28
+
29
+ [tool.hatch.build.hooks.vcs]
30
+ version-file = "src/skoll/_version.py"
31
+
26
32
  [tool.basedpyright]
27
33
  reportAny = false
28
34
  reportExplicitAny = false
@@ -0,0 +1,34 @@
1
+ # file generated by setuptools-scm
2
+ # don't change, don't track in version control
3
+
4
+ __all__ = [
5
+ "__version__",
6
+ "__version_tuple__",
7
+ "version",
8
+ "version_tuple",
9
+ "__commit_id__",
10
+ "commit_id",
11
+ ]
12
+
13
+ TYPE_CHECKING = False
14
+ if TYPE_CHECKING:
15
+ from typing import Tuple
16
+ from typing import Union
17
+
18
+ VERSION_TUPLE = Tuple[Union[int, str], ...]
19
+ COMMIT_ID = Union[str, None]
20
+ else:
21
+ VERSION_TUPLE = object
22
+ COMMIT_ID = object
23
+
24
+ version: str
25
+ __version__: str
26
+ __version_tuple__: VERSION_TUPLE
27
+ version_tuple: VERSION_TUPLE
28
+ commit_id: COMMIT_ID
29
+ __commit_id__: COMMIT_ID
30
+
31
+ __version__ = version = '0.1.1'
32
+ __version_tuple__ = version_tuple = (0, 1, 1)
33
+
34
+ __commit_id__ = commit_id = None
skoll-0.0.1/.secrets DELETED
@@ -1 +0,0 @@
1
- pypi_token = pypi-AgEIcHlwaS5vcmcCJGE0M2M3ZDllLTMxYmItNGRiNC04ZWJkLTEzZGJhOTIzNzNkNgACKlszLCIyYmNkZWU4YS0wMTlkLTRjYWYtYmZjMy1hNGY1NGJjZjI5OTgiXQAABiCbq71ihIS2lGTRDgbpkhLw015JWj1px3glkhpP9JYsUw
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
File without changes
File without changes
File without changes