CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
AllenDowney

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: AllenDowney/ModSimPy
Path: blob/master/setup.py
Views: 531
1
from distutils.core import setup
2
3
def readme():
4
try:
5
with open('README.rst') as f:
6
return f.read()
7
except IOError:
8
return ''
9
10
11
setup(
12
name='modsimpy',
13
version='1.1.2',
14
author='Allen B. Downey',
15
author_email='[email protected]',
16
packages=['modsim'],
17
url='http://github.com/AllenDowney/ModSimPy',
18
license='LICENSE',
19
description='Python library for the book Modeling and Simulation in Python.',
20
long_description=readme(),
21
)
22
23