From 7c97aa5e699041b8c24ad30e1d6ef1d16c61cde9 Mon Sep 17 00:00:00 2001 From: hugovk Date: Sat, 1 Nov 2014 15:51:05 +0200 Subject: [PATCH] Simple setup.py, so now: pip install fino --- setup.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 setup.py diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..ff05e46 --- /dev/null +++ b/setup.py @@ -0,0 +1,16 @@ +#!/usr/bin/env python + +from setuptools import setup + +setup( + name="fino", + version="0.1.0", + description="Given an integer, output the Finnish word for that number.", + url="https://github.com/hugovk/fino", + author="hugovk", + keywords=["Finnish", "suomi", "numbers", "integers"], + py_modules=("fino",), + zip_safe=False, + ) + +# End of file