b4489997dc5b04e614e9919634461110a27cdba5,python-package/setup.py,,,#,6

Before Change


        "mlbox.preprocessing","mlbox.model.supervised","mlbox.model.supervised.classification",
        "mlbox.model.supervised.regression","mlbox.preprocessing.drift"
    ],
    package_dir={"mlbox":"mlbox",
                 "mlbox.encoding":"mlbox/encoding",
                 "mlbox.model":"mlbox/model",
                 "mlbox.optimisation":"mlbox/optimisation",
                 "mlbox.prediction":"mlbox/prediction",
                 "mlbox.preprocessing":"mlbox/preprocessing",
                 "mlbox.model.supervised":"mlbox/model/supervised",
                 "mlbox.model.supervised.classification":"mlbox/model/supervised/classification",
                 "mlbox.model.supervised.regression":"mlbox/model/supervised/regression",
                 "mlbox.preprocessing.drift":"mlbox/preprocessing/drift"
                 },
    include_package_data=True,
    install_requires=requirements,
    zip_safe=False,

After Change


from pip.req import parse_requirements

install_reqs = parse_requirements("./requirements.txt", session=False)
reqs = [str(ir.req) for ir in install_reqs]

class OverrideInstallCommand(install):
    def run(self):
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: AxeldeRomblay/MLBox
Commit Name: b4489997dc5b04e614e9919634461110a27cdba5
Time: 2017-06-27
Author: nicolas.cherel@telecom-paristech.fr
File Name: python-package/setup.py
Class Name:
Method Name:


Project Name: thoughtworksarts/EmoPy
Commit Name: 053e4fa8886f106d41f670a65b3352af96265243
Time: 2017-12-19
Author: aperez@thoughtworks.com
File Name: neuralnets/main.py
Class Name:
Method Name:


Project Name: pytorch/benchmark
Commit Name: 5f1f52b07ff387bef8daf6ea1b378548de9ccab4
Time: 2020-09-14
Author: zdevito@fb.com
File Name: torchbenchmark/models/Super_SloMo/__init__.py
Class Name: Model
Method Name: __init__