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


]

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,
    )
Italian Trulli
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: dit/dit
Commit Name: 5a4c031a937ab6a46159780bce0e0b99a25963ab
Time: 2017-09-28
Author: ryangregoryjames@gmail.com
File Name: setup.py
Class Name:
Method Name: main


Project Name: shakedzy/dython
Commit Name: 44ead00d4a7fcf8ac4677ab34b6b2aa772256e33
Time: 2020-04-08
Author: shakedzy@gmail.com
File Name: setup.py
Class Name:
Method Name: