-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace setuptools with Poetry (#112)
* Add pyproject.toml and support for Poetry * Replace setuptools with Poetry --------- Co-authored-by: amietn <amietn@foobar>
- Loading branch information
Showing
7 changed files
with
378 additions
and
85 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
#!/usr/bin/env bash | ||
|
||
rm -rf vcsi.egg-info | ||
rm -rf build | ||
rm -rf dist | ||
python3 setup.py sdist bdist_wheel | ||
twine upload dist/* | ||
|
||
poetry build | ||
poetry publish |
Large diffs are not rendered by default.
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
[tool.poetry] | ||
name = "vcsi" | ||
version = "7.0.14" | ||
description = "Create video contact sheets, thumbnails, screenshots" | ||
authors = ["Nils Amiet <amietn@foobar.tld>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.10" | ||
pillow = "^9.5.0" | ||
numpy = "^1.24.3" | ||
jinja2 = "^3.1.2" | ||
texttable = "^1.6.7" | ||
parsedatetime = "^2.6" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
pytest = "^7.3.1" | ||
|
||
[tool.poetry.scripts] | ||
vcsi = "vcsi.vcsi:main" | ||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" |
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 +1 @@ | ||
7.0.13 | ||
7.0.14 |