From 34322df4c98fcd6b859d712deada06fb6f20796f Mon Sep 17 00:00:00 2001 From: Arctic Ice Studio Date: Sat, 7 Jan 2017 13:57:04 +0100 Subject: [PATCH] GHI-#8 Implement the "setup.py" file --- snowsaw/setup.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 snowsaw/setup.py diff --git a/snowsaw/setup.py b/snowsaw/setup.py new file mode 100644 index 0000000..044d213 --- /dev/null +++ b/snowsaw/setup.py @@ -0,0 +1,13 @@ +from distutils.core import setup + +setup( + name='snowsaw', + version='0.0.0', + packages=['', 'util', 'logging'], + package_dir={'': 'snowsaw'}, + url='https://github.com/arcticicestudio/snowsaw', + license='MIT', + author='Arctic Ice Studio', + author_email='development@arcticicestudio.com', + description='A lightweight, plugin-driven and simple configurable dotfile bootstrapper.' +)