long_description = read_file.read()
with open("requirements.txt") as f:
requirements = f.read().splitlines()
setup(
name="snorkel",
version="0.9.0",
After Change
// version.py defines the VERSION and VERSION_SHORT variables.
// 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