Skip to content

Commit fac1c00

Browse files
committed
Version 1.1.2
1 parent 6fbaf9b commit fac1c00

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

Diff for: setup.py

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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+
)

0 commit comments

Comments
 (0)