diff --git a/Makefile b/Makefile index 8ddd2be..35d2905 100644 --- a/Makefile +++ b/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) diff --git a/pyproject.toml b/pyproject.toml index c29dc57..c8a2b0b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] maintainers = ["Andrew Brookins "] @@ -12,7 +12,7 @@ classifiers = [ "Intended Audience :: Developers", "Topic :: Database :: Front-Ends" ] -include=["docs/*"] +include=["docs/*", "images/*"] [tool.poetry.dependencies] python = "^3.8"