diff --git a/Makefile b/Makefile index 07657f0..b40fc48 100644 --- a/Makefile +++ b/Makefile @@ -1,16 +1,17 @@ -test: - @echo no tests yet, lol +all: clean: rm -rf htmlcov find . -iname __pycache__ -o -iname '*.pyc' | xargs rm -rf rm -f .coverage - rm -rf preserves.egg-info build dist + rm -rf *.egg-info build dist # sudo apt install python3-wheel twine -publish: clean - python3 setup.py sdist bdist_wheel +publish: build twine upload dist/* +build: clean + python3 setup.py sdist bdist_wheel + veryclean: clean rm -rf pyenv diff --git a/requirements.txt b/requirements.txt index 14774b4..13a29fa 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,2 @@ websockets +preserves diff --git a/setup.py b/setup.py index 84f5571..ba7bc45 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: setup( name="mini-syndicate", - version="0.0.0", + version="0.0.1", author="Tony Garnock-Jones", author_email="tonyg@leastfixedpoint.com", license="GNU General Public License v3 or later (GPLv3+)", @@ -16,7 +16,7 @@ setup( "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "Programming Language :: Python :: 3", ], - packages=["syndicate"], + packages=["syndicate", "syndicate.mini"], url="https://github.com/syndicate-lang/mini-syndicate-py", description="Syndicate-like library for integrating Python with the Syndicate ecosystem", install_requires=['websockets', 'preserves'],