diff --git a/code/setup.py b/code/setup.py new file mode 100644 index 0000000..ee77566 --- /dev/null +++ b/code/setup.py @@ -0,0 +1,10 @@ +from distutils.core import setup + +setup(name='ThinkBayes', + version='1.0', + description='ThinkBayes book code', + author='Allen Downey', + author_email='allen.downey@olin.edu', + url='https://github.com/AllenDowney', + py_modules=['thinkbayes', 'thinkstats', 'thinkplot'], + )