Skip to content

Commit 4111330

Browse files
author
Andrew Brookins
committed
Add images to built package
1 parent c128038 commit 4111330

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ clean:
3434
dist: clean
3535
$(POETRY) build
3636

37+
.PHONY: upload
38+
upload: dist
39+
$(POETRY) run twine upload dist/*
40+
3741
.PHONY: lint
3842
lint: $(INSTALL_STAMP) dist
3943
$(POETRY) run isort --profile=black --lines-after-imports=2 ./tests/ $(NAME)

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "redis-om"
3-
version = "0.0.4"
3+
version = "0.0.5"
44
description = "A high-level library containing useful Redis abstractions and tools, like an ORM and leaderboard."
55
authors = ["Andrew Brookins <[email protected]>"]
66
maintainers = ["Andrew Brookins <[email protected]>"]
@@ -12,7 +12,7 @@ classifiers = [
1212
"Intended Audience :: Developers",
1313
"Topic :: Database :: Front-Ends"
1414
]
15-
include=["docs/*"]
15+
include=["docs/*", "images/*"]
1616

1717
[tool.poetry.dependencies]
1818
python = "^3.8"

0 commit comments

Comments
 (0)