Skip to content

Commit

Permalink
Merge pull request #28 from zpieslak/27-make-cryptography-and-protobu…
Browse files Browse the repository at this point in the history
…f-dependencies-more-flexible

Make protobuf and cryptography dependencies more flexible
  • Loading branch information
zpieslak authored Oct 28, 2024
2 parents da53e97 + 1081c27 commit 1017e02
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,25 @@ license = {file = "LICENSE"}
authors = [{name = "Zbigniew Pieślak", email = "zpieslak@gmail.com"}]
dependencies = [
"paho-mqtt~=1.6.0",
"cryptography~=43.0",
"protobuf~=4.0"
"cryptography>=35.0",
"protobuf>=3.20"
]
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]

[project.optional-dependencies]
test = [
"coverage~=7.0",
"factory-boy~=2.0",
"mypy~=1.0",
"mypy-protobuf~=3.0",
"ruff~=0.6.0",
"coverage>=7.0",
"factory-boy>=3.0",
"mypy>=1.0",
"mypy-protobuf>=3.0",
"ruff>=0.6.0",
"types-paho-mqtt~=1.0",
"types-protobuf~=4.0"
"types-protobuf>=3.20"
]

[project.urls]
Expand Down

0 comments on commit 1017e02

Please sign in to comment.