Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download

📚 The CoCalc Library - books, templates and other resources

Views: 95685
License: OTHER
1
from distutils.core import setup
2
3
def readme():
4
try:
5
with open('README.md') as f:
6
return f.read()
7
except IOError:
8
return ''
9
10
11
setup(
12
name='ThinkStats2',
13
version='2.0.0',
14
author='Allen B. Downey',
15
author_email='[email protected]',
16
packages=['thinkstats2', 'thinkplot'],
17
url='http://github.com/AllenDowney/ThinkBayes2',
18
license='LICENSE.txt',
19
description='Supporting code for the book Think Stats 2e.',
20
long_description=readme(),
21
)
22
23