Initial project skeleton

This commit is contained in:
Jason R. Coombs 2012-10-03 18:11:02 -04:00
commit 5c3f935a84
2 changed files with 18 additions and 0 deletions

18
setup.py Normal file
View File

@ -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)

0
wolframalpha/__init__.py Normal file
View File