mirror of
https://github.com/hwchase17/langchain.git
synced 2026-02-21 22:56:05 +00:00
8 lines
164 B
Python
8 lines
164 B
Python
from pathlib import Path
|
|
import sys
|
|
|
|
if __name__ == "__main__":
|
|
# unpack args
|
|
lib_path = Path(sys.argv[1])
|
|
pyproject_path = lib_path / "pyproject.toml"
|