Skip to content

Commit

Permalink
Change dependencies and readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielguarisa committed Jun 5, 2023
1 parent 884ca0e commit ae2ebbb
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,16 @@ pip install retrack
```python
import retrack

runner = retrack.Runner.from_json("your-rule.json")

response = runner.execute(input_data)
```

Or, if you want to create the parser and runner manually:

```python
import retrack

# Parse the rule/model
parser = retrack.Parser(rule)

Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "retrack"
version = "0.8.0"
version = "0.8.1"
description = "A business rules engine"
authors = ["Gabriel Guarisa <gabrielguarisa@gmail.com>", "Nathalia Trotte <nathaliatrotte@gmail.com>"]
license = "MIT"
Expand All @@ -13,16 +13,16 @@ keywords = ["rules", "models", "business", "node", "graph"]
python = "^3.7.16"
pandas = [
{ version = "1.2.0", python = "<3.8" },
{ version = "^1.5.2", python = ">=3.8" }
{ version = "^1.2.0", python = ">=3.8" }
]
numpy = [
{ version = "1.19.5", python = "<3.8" },
{ version = "^1.24.0", python = ">=3.8" }
{ version = "^1.19.5", python = ">=3.8" }
]
pydantic = "^1.10.4"
networkx = [
{ version = "2.6.3", python = "<3.8" },
{ version = "^3.0", python = ">=3.8" }
{ version = "^2.6.3", python = ">=3.8" }
]

[tool.poetry.dev-dependencies]
Expand Down

0 comments on commit ae2ebbb

Please sign in to comment.