| @@ -5,6 +5,7 @@ networkx>=2.2 | |||||
| scikit-learn>=0.20.0 | scikit-learn>=0.20.0 | ||||
| tabulate>=0.8.2 | tabulate>=0.8.2 | ||||
| tqdm>=4.26.0 | tqdm>=4.26.0 | ||||
| cvxpy>=1.0.31 # for preimage. | |||||
| cvxpy>=1.0.31 # for preimage. Does not work for "pip install graphkit-learn". | |||||
| # -e https://files.pythonhosted.org/packages/11/d0/d900870dc2d02ea74961b90c353666c6528a33ea61a10aa59a0d5574ae59/cvxpy-1.0.31.tar.gz # for preimage. | |||||
| cvxopt>=1.2.5 # for preimage. | cvxopt>=1.2.5 # for preimage. | ||||
| mosek>=9.2.5; python_version >= '3.6' # for preimage. | mosek>=9.2.5; python_version >= '3.6' # for preimage. | ||||
| @@ -0,0 +1,11 @@ | |||||
| numpy>=1.16.2 | |||||
| scipy>=1.1.0 | |||||
| matplotlib>=3.0.0 | |||||
| networkx>=2.2 | |||||
| scikit-learn>=0.20.0 | |||||
| tabulate>=0.8.2 | |||||
| tqdm>=4.26.0 | |||||
| # cvxpy>=1.0.31 # for preimage. Does not work for "pip install graphkit-learn". | |||||
| # -e https://files.pythonhosted.org/packages/11/d0/d900870dc2d02ea74961b90c353666c6528a33ea61a10aa59a0d5574ae59/cvxpy-1.0.31.tar.gz # for preimage. | |||||
| cvxopt>=1.2.5 # for preimage. | |||||
| mosek>=9.2.5; python_version >= '3.6' # for preimage. | |||||
| @@ -3,12 +3,12 @@ import setuptools | |||||
| with open("README.md", "r") as fh: | with open("README.md", "r") as fh: | ||||
| long_description = fh.read() | long_description = fh.read() | ||||
| with open('requirements.txt') as fp: | |||||
| with open('requirements_pypi.txt') as fp: | |||||
| install_requires = fp.read() | install_requires = fp.read() | ||||
| setuptools.setup( | setuptools.setup( | ||||
| name="graphkit-learn", | name="graphkit-learn", | ||||
| version="0.2b1", | |||||
| version="0.2b2", | |||||
| author="Linlin Jia", | author="Linlin Jia", | ||||
| author_email="linlin.jia@insa-rouen.fr", | author_email="linlin.jia@insa-rouen.fr", | ||||
| description="A Python library for graph kernels, graph edit distances, and graph pre-images", | description="A Python library for graph kernels, graph edit distances, and graph pre-images", | ||||