Skip to content

Commit

Permalink
Changes to package __init__ files
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan McGee authored and Ryan McGee committed Mar 5, 2020
1 parent e8daaa4 commit 3a168db
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 10 deletions.
1 change: 1 addition & 0 deletions examples/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# __init__.py
6 changes: 0 additions & 6 deletions pycrobe/.ipynb_checkpoints/Untitled-checkpoint.ipynb

This file was deleted.

5 changes: 3 additions & 2 deletions pycrobe/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
import standard
import betalactamase
# __init__.py
from .standard import *
from .betalactamase import *
Binary file added pycrobe/__init__.pyc
Binary file not shown.
Binary file modified pycrobe/betalactamase.pyc
Binary file not shown.
Binary file modified pycrobe/standard.pyc
Binary file not shown.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

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


zip_safe=False)

0 comments on commit 3a168db

Please sign in to comment.