Skip to content

Commit

Permalink
chore: change setup management
Browse files Browse the repository at this point in the history
  • Loading branch information
carrascomj committed Jan 27, 2021
1 parent 644bc79 commit 34279b0
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 19 deletions.
2 changes: 1 addition & 1 deletion ecgem/__init__.py
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
27 changes: 26 additions & 1 deletion setup.cfg
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
20 changes: 3 additions & 17 deletions setup.py
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()

0 comments on commit 34279b0

Please sign in to comment.