long_description = read_file.read()
with open("requirements.txt") as f:
requirements = f.read().splitlines()
setup(
name="snorkel",
version="0.9.0",
After Change
// We use exec here so we don"t import snorkel.
VERSION: Dict[str, str] = {}
with open("snorkel/version.py", "r") as version_file:
exec(version_file.read(), VERSION)
// Use README.md as the long_description for the package
with open("README.md", "r") as readme_file: