ec60a13a0028b14afd71f037fecb8d8fab029232,setup.py,,,#,5
Before Change
with open("requirements.txt", encoding="utf-8") as requirements:
requires = [l.strip() for l in requirements]
with open("README.rst", encoding="utf-8") as readme_f:
readme = readme_f.read()
author = ", ".join([
"Alex Wolf",
"Philipp Angerer",
"Fidel Ramirez",
After Change
python_requires=">=3.5",
install_requires=[
l.strip() for l in
Path ("requirements.txt").read_text("utf-8" ).splitlines()
],
extras_require=dict(
louvain=["python-igraph", "louvain>=0.6"],
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 6
Instances Project Name: theislab/scanpy
Commit Name: ec60a13a0028b14afd71f037fecb8d8fab029232
Time: 2019-01-07
Author: flying-sheep@web.de
File Name: setup.py
Class Name:
Method Name:
Project Name: matplotlib/matplotlib
Commit Name: 1f09d1866cafb3e16e628f9f1bfd91471acc0988
Time: 2018-05-29
Author: anntzer.lee@gmail.com
File Name: lib/matplotlib/backends/backend_webagg_core.py
Class Name: FigureManagerWebAgg
Method Name: get_javascript
Project Name: matplotlib/matplotlib
Commit Name: 1f09d1866cafb3e16e628f9f1bfd91471acc0988
Time: 2018-05-29
Author: anntzer.lee@gmail.com
File Name: lib/matplotlib/backends/backend_nbagg.py
Class Name: FigureManagerNbAgg
Method Name: get_javascript