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.

__init__.py 381 B

10 months ago
12345678910111213
  1. """TODO: Add docstring."""
  2. import os
  3. # Define the path to the README file relative to the package directory
  4. readme_path = os.path.join(os.path.dirname(os.path.dirname(__file__)), "README.md")
  5. # Read the content of the README file
  6. try:
  7. with open(readme_path, encoding="utf-8") as f:
  8. __doc__ = f.read()
  9. except FileNotFoundError:
  10. __doc__ = "README file not found."