File tree Expand file tree Collapse file tree 1 file changed +16
-2
lines changed
Expand file tree Collapse file tree 1 file changed +16
-2
lines changed Original file line number Diff line number Diff line change 1414 @echo " format Format code with black and isort"
1515 @echo " type-check Run mypy type checking"
1616 @echo " clean Clean build artifacts"
17- @echo " docs Build documentation"
1817 @echo " build Build package for distribution"
18+ @echo " test-build Build and check package"
19+ @echo " publish-test Publish to Test PyPI"
1920 @echo " publish Publish package to PyPI"
21+ @echo " setup-remote Show commands to setup GitHub remote"
2022
2123# Installation
2224install :
7577build : clean
7678 python -m build
7779
78- publish : build
80+ test-build : build
81+ python -m twine check dist/*
82+
83+ publish-test : test-build
84+ python -m twine upload --repository testpypi dist/*
85+
86+ publish : test-build
7987 python -m twine upload dist/*
8088
89+ # GitHub repository setup
90+ setup-remote :
91+ @echo " Run this command to add your GitHub remote:"
92+ @echo " git remote add origin https://github.com/sirstig/yokedcache.git"
93+ @echo " git push -u origin main"
94+
8195# Utilities
8296redis-start :
8397 @echo " Starting Redis server (requires Docker)..."
You can’t perform that action at this time.
0 commit comments