-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* switched project to use rye instead of poetry * updated actions for rye to pin before sync * updated workflows to remove 3.13 * added maturin as dependency * renamed module to imghash * removed python 3.8 support
- Loading branch information
1 parent
4e67332
commit 1723d1a
Showing
14 changed files
with
96 additions
and
210 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.12.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,4 +14,6 @@ To get started add the package to your project: | |
|
||
```shell | ||
pip install imghash | ||
``` | ||
``` | ||
|
||
... |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,32 @@ | ||
[tool.poetry] | ||
[project] | ||
name = "imghash" | ||
version = "0.1.0" | ||
description = "Image hashing powered by Rust" | ||
description = "Image hashing powered by Rust!" | ||
|
||
authors = ["Yannick Alexander <yannick@alexanderdev.io>"] | ||
requires-python = ">=3.9,<3.13" | ||
|
||
license = "MIT" | ||
readme = "README.md" | ||
authors = [{ name = "Yannick Alexander", email = "yannick@alexanderdev.io" }] | ||
license = { file = "LICENSE" } | ||
|
||
package-mode = false | ||
keywords = ["image", "hashing"] | ||
classifiers = [ | ||
"Intended Audience :: Developers", | ||
# Python Versions | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.10,<=3.12" | ||
[project.urls] | ||
repository = "https://github.com/yannickalex07/imghash-py" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
maturin = "^1.5.1" | ||
pytest = "^8.2.0" | ||
ruff = "^0.4.2" | ||
[tool.rye] | ||
managed = true | ||
dev-dependencies = ["pip>=24.2", "pytest>=8.3.2", "ruff>=0.5.6", "maturin~=1.7"] | ||
|
||
[build-system] | ||
requires = ["maturin>=1.5,<=2.0"] | ||
requires = ["maturin>=1.2,<2.0"] | ||
build-backend = "maturin" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# generated by rye | ||
# use `rye lock` or `rye sync` to update this lockfile | ||
# | ||
# last locked with the following flags: | ||
# pre: false | ||
# features: [] | ||
# all-features: false | ||
# with-sources: false | ||
# generate-hashes: false | ||
# universal: false | ||
|
||
-e file:. | ||
iniconfig==2.0.0 | ||
# via pytest | ||
maturin==1.7.0 | ||
packaging==24.1 | ||
# via pytest | ||
pip==24.2 | ||
pluggy==1.5.0 | ||
# via pytest | ||
pytest==8.3.2 | ||
ruff==0.5.6 |
Oops, something went wrong.