You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- """TODO: Add docstring."""
-
- import os
-
- # Define the path to the README file relative to the package directory
- readme_path = os.path.join(os.path.dirname(os.path.dirname(__file__)), "README.md")
-
- # Read the content of the README file
- try:
- with open(readme_path, encoding="utf-8") as f:
- __doc__ = f.read()
- except FileNotFoundError:
- __doc__ = "README file not found."
|