Add images to built package
This commit is contained in:
parent
c128038d33
commit
4111330124
2 changed files with 6 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -34,6 +34,10 @@ clean:
|
|||
dist: clean
|
||||
$(POETRY) build
|
||||
|
||||
.PHONY: upload
|
||||
upload: dist
|
||||
$(POETRY) run twine upload dist/*
|
||||
|
||||
.PHONY: lint
|
||||
lint: $(INSTALL_STAMP) dist
|
||||
$(POETRY) run isort --profile=black --lines-after-imports=2 ./tests/ $(NAME)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[tool.poetry]
|
||||
name = "redis-om"
|
||||
version = "0.0.4"
|
||||
version = "0.0.5"
|
||||
description = "A high-level library containing useful Redis abstractions and tools, like an ORM and leaderboard."
|
||||
authors = ["Andrew Brookins <andrew.brookins@redis.com>"]
|
||||
maintainers = ["Andrew Brookins <andrew.brookins@redis.com>"]
|
||||
|
@ -12,7 +12,7 @@ classifiers = [
|
|||
"Intended Audience :: Developers",
|
||||
"Topic :: Database :: Front-Ends"
|
||||
]
|
||||
include=["docs/*"]
|
||||
include=["docs/*", "images/*"]
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.8"
|
||||
|
|
Loading…
Reference in a new issue