forked from AllenDowney/ModSimPy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (18 loc) · 498 Bytes
/
setup.py
File metadata and controls
21 lines (18 loc) · 498 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from distutils.core import setup
def readme():
try:
with open('README.rst') as f:
return f.read()
except IOError:
return ''
setup(
name='modsimpy',
version='1.1.2',
author='Allen B. Downey',
author_email='downey@allendowney.com',
packages=['modsim'],
url='http://github.com/AllenDowney/ModSimPy',
license='LICENSE',
description='Python library for the book Modeling and Simulation in Python.',
long_description=readme(),
)