Skip to content

Commit

Permalink
re-vamped setup
Browse files Browse the repository at this point in the history
  • Loading branch information
kaliv0 committed Dec 6, 2024
1 parent 97395a7 commit d94158b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<img src="https://github.com/kaliv0/pypermissive/blob/main/permissive.jpg?raw=true" alt="Permissive Path">
<img src="https://github.com/kaliv0/pypermissive/blob/main/assets/permissive.jpg?raw=true" alt="Permissive Path">
</p>

---
Expand Down Expand Up @@ -93,7 +93,7 @@ def some_func(delimiter: str, count: int, numbers: list[int]) -> str:
@Interface checks on a class-definition level if the decorated class implements all described methods with the specified signature
```python
class MyInterface:
def pow(self): ...
def pow(self, x: int, y: int) -> int: ...


@Interface(MyInterface)
Expand Down
File renamed without changes
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
[tool.poetry]
name = "pypermissive"
version = "1.0.1"
version = "1.1.2"
description = "Validation library"
authors = ["kaliv0 <[email protected]>"]
readme = "README.md"
license = "LICENSE"
keywords = ["validation library", "type validator"]
repository = "https://github.com/kaliv0/pypermissive"

packages = [{ include = "pypermissive" }]

[tool.poetry.dependencies]
python = "^3.12"

Expand Down

0 comments on commit d94158b

Please sign in to comment.