0e901dc0821e773abd2dddff75eb8e00f5d4cb1a,setup.py,,,#,3
Before Change
from setuptools import setup, find_packages
setup(name="funniest",
version="0.1",
description="The funniest joke in the world",
long_description="Really, the funniest around.",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Topic :: Text Processing :: Linguistic",
],
keywords="funniest joke comedy flying circus",
url="http://github.com/storborg/funniest",
author="Flying Circus",
author_email="flyingcircus@example.com",
license="MIT",
packages=find_packages(),
install_requires=[
"markdown",
],
include_package_data=True,
zip_safe=False)
After Change
"tensorflow>=1.0.0",
]
if __name__ == "__main__":
setup(
name=DISTNAME,
version=VERSION,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
license=LICENSE,
url=URL,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
classifiers=classifiers,
install_requires=install_reqs,
)

In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 4
Instances
Project Name: ScottfreeLLC/AlphaPy
Commit Name: 0e901dc0821e773abd2dddff75eb8e00f5d4cb1a
Time: 2017-03-09
Author: Mark.R.Conway@gmail.com
File Name: setup.py
Class Name:
Method Name:
Project Name: loli/medpy
Commit Name: 40712b5e298990455b3f65e3c0fd4694ca233d04
Time: 2014-09-18
Author: oskar.maier@googlemail.com
File Name: setup.py
Class Name:
Method Name:
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: