Skip to content

Commit 3a168db

Browse files
Ryan McGeeRyan McGee
Ryan McGee
authored and
Ryan McGee
committed
Changes to package __init__ files
1 parent e8daaa4 commit 3a168db

File tree

7 files changed

+6
-10
lines changed

7 files changed

+6
-10
lines changed

examples/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# __init__.py

pycrobe/.ipynb_checkpoints/Untitled-checkpoint.ipynb

-6
This file was deleted.

pycrobe/__init__.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
import standard
2-
import betalactamase
1+
# __init__.py
2+
from .standard import *
3+
from .betalactamase import *

pycrobe/__init__.pyc

175 Bytes
Binary file not shown.

pycrobe/betalactamase.pyc

-796 Bytes
Binary file not shown.

pycrobe/standard.pyc

-3.33 KB
Binary file not shown.

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
setup(name='pycrobe',
44
packages=['pycrobe'],
5-
version='0.2.1',
5+
version='0.2.2',
66
description='A simple package for simulations of microbial growth experiments with realistic sources of error.',
77
author='Ryan Seamus McGee',
88
author_email='[email protected]',
99
license='MIT',
1010
url='https://github.com/ryansmcgee/pycrobe',
1111
download_url='https://github.com/ryansmcgee/pycrobe/archive/v0.2.tar.gz',
12-
install_requires=['numpy', 'pandas'],
12+
install_requires=['numpy', 'scipy', 'pandas'],
1313

1414

1515
zip_safe=False)

0 commit comments

Comments
 (0)