Updated build scripts
This commit is contained in:
parent
a29c4a0e17
commit
fab12ad9bf
2 changed files with 10 additions and 0 deletions
5
Makefile
5
Makefile
|
|
@ -26,5 +26,10 @@ build_spkg: remove_symlinks build_sdist create_symlinks
|
||||||
release: remove_symlinks build_wheel build_spkg create_symlinks
|
release: remove_symlinks build_wheel build_spkg create_symlinks
|
||||||
|
|
||||||
upload:
|
upload:
|
||||||
|
@echo Ready to publish release over Reticulum
|
||||||
|
@read VOID
|
||||||
|
rngit release rns://7649a50d84610232d1416b41d2896aff/reticulum/lxmf create $$(python setup.py --getversion):dist --name lxmf
|
||||||
|
|
||||||
|
upload-pip:
|
||||||
@echo Uploading to PyPi...
|
@echo Uploading to PyPi...
|
||||||
twine upload dist/*.whl dist/*.tar.gz
|
twine upload dist/*.whl dist/*.tar.gz
|
||||||
|
|
|
||||||
5
setup.py
5
setup.py
|
|
@ -1,3 +1,4 @@
|
||||||
|
import sys
|
||||||
import setuptools
|
import setuptools
|
||||||
|
|
||||||
with open("README.md", "r") as fh:
|
with open("README.md", "r") as fh:
|
||||||
|
|
@ -5,6 +6,10 @@ with open("README.md", "r") as fh:
|
||||||
|
|
||||||
exec(open("LXMF/_version.py", "r").read())
|
exec(open("LXMF/_version.py", "r").read())
|
||||||
|
|
||||||
|
if "--getversion" in sys.argv:
|
||||||
|
print(__version__, end="")
|
||||||
|
exit(0)
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="lxmf",
|
name="lxmf",
|
||||||
version=__version__,
|
version=__version__,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue