- Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
21 lines (18 loc) · 498 Bytes
/
Copy pathsetup.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
fromdistutils.coreimportsetup
defreadme():
try:
withopen('README.rst') asf:
returnf.read()
exceptIOError:
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(),
)