Skip to content

Commit

Permalink
dependencies are now in requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
soldni committed Oct 14, 2022
1 parent 51650c1 commit 115b3d1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
[project]
name = "trouting"
version = "0.3.0"
version = "0.3.1"
description = "Trouting (short for Type Routing) is a simple class decorator that allows to define multiple interfaces for a method that behave differently depending on input types."
authors = [
{name = "Luca Soldaini", email = "[email protected]" }
]
license = {text = "Apache-2.0"}
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"typing_extensions>=4.3.0"
]
dynamic = ["dependencies"]

[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}

[project.urls]
"Homepage" = "https://github.com/soldni/trouting"
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
typing_extensions>=4.3.0

0 comments on commit 115b3d1

Please sign in to comment.