commit 5c3f935a84a0bf9842a987a60686bcd28aeef481 Author: Jason R. Coombs Date: Wed Oct 3 18:11:02 2012 -0400 Initial project skeleton 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