From 5c3f935a84a0bf9842a987a60686bcd28aeef481 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Wed, 3 Oct 2012 18:11:02 -0400 Subject: [PATCH] Initial project skeleton --- setup.py | 18 ++++++++++++++++++ wolframalpha/__init__.py | 0 2 files changed, 18 insertions(+) create mode 100644 setup.py create mode 100644 wolframalpha/__init__.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..6c545c9 --- /dev/null +++ b/setup.py @@ -0,0 +1,18 @@ +#!/usr/bin/env python +# Generated by jaraco.develop (https://bitbucket.org/jaraco/jaraco.develop) +import setuptools + +setup_params = dict( + name='wolframalpha', + use_hg_version=True, + author="Jason R. Coombs", + author_email="jaraco@jaraco.com", + url="https://bitbucket.org/jaraco/wolframalpha", + packages=setuptools.find_packages(), + zip_safe=False, + setup_requires=[ + 'hgtools', + ], +) +if __name__ == '__main__': + setuptools.setup(**setup_params) diff --git a/wolframalpha/__init__.py b/wolframalpha/__init__.py new file mode 100644 index 0000000..e69de29