mirror of
https://github.com/markqvist/NomadNet.git
synced 2026-06-04 12:41:19 +00:00
Updated makefile
This commit is contained in:
@@ -21,5 +21,10 @@ build_wheel:
|
||||
release: remove_symlinks build_wheel create_symlinks
|
||||
|
||||
upload:
|
||||
@echo Ready to publish release over Reticulum
|
||||
@read VOID
|
||||
rngit release rns://7649a50d84610232d1416b41d2896aff/reticulum/nomadnet create $$(python setup.py --getversion):dist --name nomadnet
|
||||
|
||||
upload-pip:
|
||||
@echo Uploading to PyPi...
|
||||
twine upload dist/*.whl dist/*.tar.gz
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
|
||||
import sys
|
||||
import setuptools
|
||||
|
||||
exec(open("nomadnet/_version.py", "r").read())
|
||||
@@ -6,6 +6,10 @@ exec(open("nomadnet/_version.py", "r").read())
|
||||
with open("README.md", "r") as fh:
|
||||
long_description = fh.read()
|
||||
|
||||
if "--getversion" in sys.argv:
|
||||
print(__version__, end="")
|
||||
exit(0)
|
||||
|
||||
package_data = {
|
||||
"": [
|
||||
"examples/messageboard/*",
|
||||
|
||||
Reference in New Issue
Block a user