summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorrsiddharth <rsd@gnu.org>2015-12-20 12:21:45 -0500
committerrsiddharth <rsd@gnu.org>2015-12-20 12:21:45 -0500
commit12d82844adec4be94cd1fd30d8bfbf0dc5aa6612 (patch)
tree1ab2dd3936f0b72869b972543e0aed9245cdb590 /Makefile
parent6fae6eefad0e1e2db80c735b846d3829c108b434 (diff)
Added Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile36
1 files changed, 36 insertions, 0 deletions
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
+# <http://www.gnu.org/licenses/>.
+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
+