Skip to content

Commit

Permalink
Simple setup.py, so now: pip install fino
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Nov 1, 2014
1 parent c842618 commit 7c97aa5
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 7c97aa5

Please sign in to comment.