6d26f8ddf7431c6f20f05b9d37b957cde1678327,setup.py,,,#,12
Before Change
sys.exit(sum(subprocess.call(shlex.split(cmd)) for cmd in commands))
here = osp.dirname(osp.abspath(__file__))
def customize(command_subclass):
orig_run = command_subclass.run
After Change
sys.exit(sum(subprocess.call(shlex.split(cmd)) for cmd in commands))
setup(
name="labelme",
version=version,
packages=find_packages(),
description="Image Polygonal Annotation with Python.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Kentaro Wada",
author_email="www.kentaro.wada@gmail.com",
url="https://github.com/wkentaro/labelme",
install_requires=install_requires,
license="GPLv3",
keywords="Image Annotation, Machine Learning",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Topic :: Internet :: WWW/HTTP",
],
package_data={"labelme": ["icons/*"]},
entry_points={
"console_scripts": [
"labelme=labelme.app:main",
"labelme_draw_json=labelme.cli.draw_json:main",
"labelme_json_to_dataset=labelme.cli.json_to_dataset:main",
"labelme_on_docker=labelme.cli.on_docker:main",
],
},
)
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 7
Instances Project Name: wkentaro/labelme
Commit Name: 6d26f8ddf7431c6f20f05b9d37b957cde1678327
Time: 2018-04-14
Author: www.kentaro.wada@gmail.com
File Name: setup.py
Class Name:
Method Name:
Project Name: r9y9/wavenet_vocoder
Commit Name: ee5e88bc0446986f6bc74080835e0566856d0e79
Time: 2019-09-07
Author: zryuichi@gmail.com
File Name: setup.py
Class Name:
Method Name:
Project Name: automl/auto-sklearn
Commit Name: 0492e8cfcc9f12ceea648ad6c6bef3bcb1a59c5d
Time: 2016-02-10
Author: springj@informatik.uni-freiburg.de
File Name: setup.py
Class Name:
Method Name: