835b683b85ff0ff8d812fadf3dad2371cb09c020,setup.py,,,#,12

Before Change


    license="MIT",

    // See https://pypi.python.org/pypi?%3Aaction=list_classifiers
    classifiers=[
        // How mature is this project? Common values are
        //   3 - Alpha
        //   4 - Beta
        //   5 - Production/Stable
        "Development Status :: 3 - Alpha",

        // Indicate who your project is intended for
        "Intended Audience :: Developers",
        "Topic :: Scientific/Engineering :: Artificial Intelligence",

        // Pick your license as you wish (should match "license" above)
        "License :: OSI Approved :: MIT License",

        // Specify the Python versions you support here. In particular, ensure
        // that you indicate whether you support Python 2, Python 3 or both.
        "Programming Language :: Python :: 3",
        // TODO: python 3 support
    ],

    // What does your project relate to?
    keywords="machine learning hyperparameters datascience pipelines",

After Change


    readme = readme_file.read()

with open("HISTORY.md") as history_file:
    history = history_file.read()

requirements = [
    "Click>=6.0",
    
]

setup_requirements = ["pytest-runner", ]

test_requirements = ["pytest", ]

setup(
    author="William Xue",
    author_email="wgxue@mit.edu",
    classifiers=[
        "Development Status :: 2 - Pre-Alpha",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: MIT License",
        "Natural Language :: English",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: 3.4",
        "Programming Language :: Python :: 3.5",
        "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,
    long_description_content_type="text/markdown",
    include_package_data=True,
    keywords="mlblocks",
    name="mlblocks",
    packages=find_packages(include=["mlblocks"]),
    setup_requires=setup_requirements,
    test_suite="tests",
    tests_require=test_requirements,
    url="https://github.com/HDI-Project/mlblocks",
    version="0.1.0",
    zip_safe=False,
)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 9

Instances


Project Name: HDI-Project/MLBlocks
Commit Name: 835b683b85ff0ff8d812fadf3dad2371cb09c020
Time: 2018-04-09
Author: williamxue@dhcp-18-111-53-173.dyn.mit.edu
File Name: setup.py
Class Name:
Method Name:


Project Name: IDSIA/sacred
Commit Name: d7e195c3515630b1d93ac74e6bcae209d1bb0de7
Time: 2016-01-17
Author: qwlouse@gmail.com
File Name: setup.py
Class Name:
Method Name:


Project Name: IDSIA/sacred
Commit Name: 1e9a84acaf3b923e737341a5283df7aeb65b8c9b
Time: 2016-01-13
Author: qwlouse@gmail.com
File Name: setup.py
Class Name:
Method Name: