diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f377a28 --- /dev/null +++ b/Makefile @@ -0,0 +1,31 @@ +.PHONY: clean-pyc clean-build docs clean build install install-all version + +help: + @echo "clean-build - remove build artifacts" + @echo "clean-pyc - remove Python file artifacts" + @echo "release - package and upload a release" + @echo "dist - package" + +clean: clean-build clean-pyc + +clean-build: + rm -rf build/ + rm -rf dist/ + rm -rf *.egg-info + +clean-pyc: + find . -name '*.pyc' -exec rm -f {} + + find . -name '*.pyo' -exec rm -f {} + + find . -name '*~' -exec rm -f {} + + +version: + python setup.py --version + +release: clean build + python setup.py sdist upload + python setup.py bdist_wheel upload + +dist: clean build + python setup.py sdist + python setup.py bdist_wheel + ls -l dist diff --git a/sqlacodegen/__init__.py b/sqlacodegen/__init__.py index e3c5f37..7347817 100644 --- a/sqlacodegen/__init__.py +++ b/sqlacodegen/__init__.py @@ -1 +1 @@ -version = __version__ = '1.1.6.1' +version = __version__ = '1.1.7'