-
Notifications
You must be signed in to change notification settings - Fork 7
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
1 parent
644bc79
commit 34279b0
Showing
3 changed files
with
30 additions
and
19 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 |
---|---|---|
@@ -1 +1 @@ | ||
from .dirt import from_copy_number, from_mmol_gDW | ||
from .io import from_copy_number, from_mmol_gDW |
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,3 +1,28 @@ | ||
[metadata] | ||
name = ecgem | ||
description = Enzyme Constraint genome-scale models | ||
keywords = | ||
python | ||
metabolic-models | ||
bioinformatics | ||
systems-biology | ||
long_description = file: README.md | ||
version = 0.0.1 | ||
|
||
[options] | ||
zip_safe = True | ||
install_requires = | ||
cobra~=0.20.0 | ||
pandas~=1.1.5 | ||
packages = find: | ||
|
||
[options.extras_require] | ||
dev = | ||
black | ||
isort | ||
tox | ||
pytest | ||
|
||
[flake8] | ||
max-line-length = 88 | ||
exlude = __init__.py | ||
exclude = __init__.py |
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,18 +1,4 @@ | ||
from setuptools import setup, find_packages | ||
from setuptools import setup | ||
|
||
|
||
def readme(): | ||
with open("README.md") as f: | ||
return f.read() | ||
|
||
|
||
setup( | ||
name="ecgem", | ||
version="0.0.1", | ||
description="Enzyme Constraint genome-scale models", | ||
keywords="python metabolic-models bioinformatics systems-biology", | ||
license="MIT", | ||
packages=find_packages(), | ||
install_requires=["cobra==0.20.0", "pandas==1.1.5"], | ||
zip_safe=False, | ||
) | ||
if __name__ == "__main__": | ||
setup() |