diff --git a/docs/conf.py b/docs/conf.py index 896fc61..e62af21 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -9,7 +9,7 @@ project = 'Kinex' copyright = '2023, Alexandra Valeanu and Jitao David Zhang' author = 'Alexandra Valeanu and Jitao David Zhang' -release = '0.0.1' +release = '1.0.0' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/docs/index.rst b/docs/index.rst index bd6a4e7..e0e9cd8 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -14,10 +14,3 @@ This documentation includes the information about installation and usage of the chapters/installation chapters/usage - -Indices and tables -================== - -* :ref:`genindex` -* :ref:`modindex` -* :ref:`search` \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index c3f62c0..cac5470 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,7 @@ scipy>=1.10.0 python>=3.8 numpy>=1.19.5 +pandas statsmodels plotly scikit-learn diff --git a/setup.py b/setup.py index f57710b..ea550c0 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="kinex", - version="0.0.1", + version="1.0.0", description="A python package to compute kinase scoring and enrichment", py_modules=["kinex"], package_dir={"": "src"}, @@ -14,6 +14,7 @@ "scipy >= 1.10.0", "numpy >= 1.19.5", "nbformat>=4.2.0", + "pandas", "statsmodels", "plotly", "scikit-learn",