473f904f555c4c9cf4219cb81a363a11f182e2c4,python/setup.py,,,#,2

Before Change

from distutils.core import setup
setup(name="hyper-tools",
      version="1.1",
      py_modules=["plot_coords", "hyperalign"],
      install_requires=["numpy", "scipy", "matplotlib", "seaborn", "scikit-learn"]
      )

After Change


from setuptools import setup, find_packages


with open("readme.md") as f:
    readme = f.read()

// NEED TO ADD IN LICENSE
with open("LICENSE") as f:
    license = f.read()

setup(
    name="hypertools",
    version="1.0.0",
    description="Python package for manipulating and visualizing high dimensional data",
    long_description=readme,
    author="Contextual Dynamics Lab",
    author_email="contextualdynamics@gmail.com",
    url="https://github.com/ContextLab/pyfingerprint",
    license=license,
    packages=find_packages(exclude=("tests", "docs", "examples"))
)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 4

Non-data size: 18

Instances


Project Name: ContextLab/hypertools
Commit Name: 473f904f555c4c9cf4219cb81a363a11f182e2c4
Time: 2016-12-07
Author: andyheusser@andys-mbp.wireless.dartmouth.edu
File Name: python/setup.py
Class Name:
Method Name:


Project Name: ContextLab/hypertools
Commit Name: 76557d8c57f4488c2a16353ea304c2eb806e837a
Time: 2016-12-07
Author: andyheusser@andys-mbp.wireless.dartmouth.edu
File Name: python/setup.py
Class Name:
Method Name:


Project Name: ContextLab/hypertools
Commit Name: f79f8097eaf462961f4cc4c0df6678104928e7a8
Time: 2016-12-07
Author: andyheusser@andys-mbp.wireless.dartmouth.edu
File Name: python/setup.py
Class Name:
Method Name:


Project Name: ContextLab/hypertools
Commit Name: 515ca4ecb1fd327e86bf360f7d19d7ba21182128
Time: 2016-12-07
Author: andyheusser@andys-mbp.wireless.dartmouth.edu
File Name: python/setup.py
Class Name:
Method Name: