From 12d82844adec4be94cd1fd30d8bfbf0dc5aa6612 Mon Sep 17 00:00:00 2001 From: rsiddharth Date: Sun, 20 Dec 2015 12:21:45 -0500 Subject: Added Makefile --- Makefile | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..9d9a7d2 --- /dev/null +++ b/Makefile @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- +# +# Copyright (C) 2015 lpschedule-generator contributors. See CONTRIBUTORS. +# +# This file is part of lpschedule-generator. +# +# lpschedule-generator is free software: you can redistribute it +# and/or modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. +# +# lpschedule-generator is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with lpschedule-generator (see COPYING). If not, see +# . +test: + @nosetests + +build-dist: + @python setup.py sdist bdist_wheel + +upload: + @twine upload -r pypi -s -i rsd@gnu.org dist/*.tar.gz + @twine upload -r pypi -s -i rsd@gnu.org dist/*.whl + +clean-build: + @rm -rf build/ + @rm -rf dist/ + @rm -rf *.egg-info + +.PHONY: dist clean-build upload build-dist + -- cgit v1.2.3