1f978867fb18cfe1f645434c3f1de720ab77e342,setup.py,,,#,2

Before Change

from setuptools import setup, find_packages
setup(
  name = "vaderSentiment",
  //packages = ["vaderSentiment"], // this must be the same as the name above
  packages = find_packages(exclude=["tests*"]), // a better way to do it than the line above -- this way no typo/transpo errors
  include_package_data=True,
  version = "2.1",
  description = "VADER Sentiment Analysis. VADER (Valence Aware Dictionary and sEntiment Reasoner) is a lexicon and rule-based sentiment analysis tool that is specifically attuned to sentiments expressed in social media, and works well on texts from other domains.",
  author = "C.J. Hutto",
  author_email = "cjhutto@gatech.edu",
  license = "MIT License: http://opensource.org/licenses/MIT",
  url = "https://github.com/cjhutto/vaderSentiment", // use the URL to the github repo
  download_url = "https://github.com/cjhutto/vaderSentiment/archive/master.zip", 
  keywords = ["vader", "sentiment", "analysis", "opinion", "mining", "nlp", "text", "data", 
              "text analysis", "opinion analysis", "sentiment analysis", "text mining", "twitter sentiment",
              "opinion mining", "social media", "twitter", "social", "media"], // arbitrary keywords
  classifiers = ["Development Status :: 4 - Beta", "Intended Audience :: Science/Research",
                 "License :: OSI Approved :: MIT License", "Natural Language :: English",
                 "Programming Language :: Python :: 2.7", "Topic :: Scientific/Engineering :: Artificial Intelligence",
                 "Topic :: Scientific/Engineering :: Information Analysis", "Topic :: Text Processing :: Linguistic",
                 "Topic :: Text Processing :: General"],
)

After Change


import os
from setuptools import setup, find_packages

HERE = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
    
    Build an absolute path from *parts* and and return the contents of the
    resulting file.  Assume UTF-8 encoding.
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 8

Instances


Project Name: cjhutto/vaderSentiment
Commit Name: 1f978867fb18cfe1f645434c3f1de720ab77e342
Time: 2016-12-09
Author: cjhutto@gatech.edu
File Name: setup.py
Class Name:
Method Name:


Project Name: tensorlayer/tensorlayer
Commit Name: 6d9a2026ed5b80b24c6e3262f1dfc9380d90aa24
Time: 2018-04-16
Author: contact@jonathandekhtiar.eu
File Name: setup.py
Class Name:
Method Name:


Project Name: automl/auto-sklearn
Commit Name: 6a1e876cd545ede357714c7668c41e36bab291f9
Time: 2015-03-31
Author: feurerm@informatik.uni-freiburg.de
File Name: setup.py
Class Name:
Method Name: