// You can just specify the packages manually here if your project is
// simple. Or you can use find_packages().
packages=find_packages()
// List run-time dependencies here. These will be installed by pip when
// your project is installed. For an analysis of "install_requires" vs pip"s
// requirements files see:
After Change
"Programming Language :: Python :: 3.6",
],
description="Pipelines and primitives for machine learning and data science.",
entry_points={
"console_scripts": [
"mlblocks=mlblocks.cli:main",
],
},
install_requires=requirements,
license="MIT license",
long_description=readme + "\n\n" + history,