🤖 Repository layout updated to latest version

This commit was automatically generated by [a script](https://gitfub.space/Jmaa/repo-manager)
This commit is contained in:
Takunomi Automaticus, The 2nd 2025-05-14 23:54:31 +02:00
parent e769f27957
commit db3736550b
2 changed files with 13 additions and 4 deletions

View File

@ -10,7 +10,15 @@
This project requires [Python](https://www.python.org/) 3.8 or newer.
This project does not have any library requirements 😎
All required libraries can be installed easily using:
```bash
pip install -r requirements.txt
```
Full list of requirements:
- [prompt_toolkit](https://pypi.org/project/prompt_toolkit/)
- [langgraph](https://pypi.org/project/langgraph/)
## Contributing

View File

@ -14,7 +14,6 @@ PACKAGE_DESCRIPTION = """
PACKAGE_DESCRIPTION_SHORT = """
""".strip()
def parse_version_file(text: str) -> str:
match = re.match(r'^__version__\s*=\s*(["\'])([\d\.]+)\1$', text)
if match is None:
@ -22,11 +21,13 @@ def parse_version_file(text: str) -> str:
raise Exception(msg)
return match.group(2)
with open(PACKAGE_NAME + '/_version.py') as f:
version = parse_version_file(f.read())
REQUIREMENTS_MAIN = []
REQUIREMENTS_MAIN = [
'prompt_toolkit',
'langgraph',
]
REQUIREMENTS_TEST = []
setup(