-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ryan McGee
authored and
Ryan McGee
committed
Mar 5, 2020
1 parent
e8daaa4
commit 3a168db
Showing
7 changed files
with
6 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# __init__.py |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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) |