diff --git a/.gitignore b/.gitignore index f6253a3..63fe49a 100644 --- a/.gitignore +++ b/.gitignore @@ -101,3 +101,6 @@ dmypy.json # Cython debug symbols cython_debug/ + +# IDE +.vscode/ diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..97196cd --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +build: + sudo python -m build + +upload: + python -m twine upload dist/* + +clean: + sudo rm -rf dist/ python_aternos.egg-info/