2dcc499468743c58664ceaaffe07205ab7016baa,setup.py,,,#,12
Before Change
packages=find_packages(exclude=["docs", "tests"]),
python_requires=">=3.0",
install_requires=["numpy", "scikit-learn", "matplotlib", "scipy",
"pandas", "networkx", "sympy"],
)
After Change
long_description = f.read()
// Get the required packages
with open(path.join(here, "requirements.txt"), encoding="utf-8") as f:
install_requires = f.read().split("\n")
// Remove empty lines
while "" in install_requires:
install_requires.remove("")
setup(
name="dowhy",
version="0.1.0",
In pattern: SUPERPATTERN
Frequency: 4
Non-data size: 5
Instances
Project Name: Microsoft/dowhy
Commit Name: 2dcc499468743c58664ceaaffe07205ab7016baa
Time: 2018-10-04
Author: kazi@kazigk.pl
File Name: setup.py
Class Name:
Method Name:
Project Name: arnomoonens/yarll
Commit Name: 9d5dcc37110f168f69cceda98f3902b2a498dabd
Time: 2020-07-09
Author: arno.moonens@gmail.com
File Name: setup.py
Class Name:
Method Name:
Project Name: lingpy/lingpy
Commit Name: a98e9af48c1516ade47d4efc4f73b68a4df9536a
Time: 2017-10-17
Author: simon@simon.net.nz
File Name: setup.py
Class Name:
Method Name:
Project Name: ntucllab/libact
Commit Name: 40cd90d4999d7da4c1192f22fe9897cc32812c56
Time: 2019-06-20
Author: yangarbiter@gmail.com
File Name: setup.py
Class Name:
Method Name: