diff --git a/dist.sh b/dist.sh new file mode 100755 index 0000000..b9a94e0 --- /dev/null +++ b/dist.sh @@ -0,0 +1,5 @@ +#!/usr/bin/bash + +python3 -m pip install --user --upgrade setuptools wheel twine +python3 setup.py sdist bdist_wheel +python3 -m twine upload dist/* diff --git a/setup.py b/setup.py index 009f917..e128ebf 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ setup( name='nengo_bio', packages=find_packages(), - version='0.1', + version='0.1.1', author='Andreas Stöckel', author_email='astoecke@uwaterloo.ca', description='Dendritic Computation Primitives for Nengo',