Makefile
This commit is contained in:
parent
4d6bd2db2d
commit
a6ec9a1a0f
2 changed files with 11 additions and 0 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -101,3 +101,6 @@ dmypy.json
|
|||
|
||||
# Cython debug symbols
|
||||
cython_debug/
|
||||
|
||||
# IDE
|
||||
.vscode/
|
||||
|
|
8
Makefile
Normal file
8
Makefile
Normal file
|
@ -0,0 +1,8 @@
|
|||
build:
|
||||
sudo python -m build
|
||||
|
||||
upload:
|
||||
python -m twine upload dist/*
|
||||
|
||||
clean:
|
||||
sudo rm -rf dist/ python_aternos.egg-info/
|
Reference in a new issue