You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# the MANIFEST.in file is used to ensure that certain important files,
# which are not Python code files but are essential to the package (like READMEs, licenses, and data files), are included in the package when it is distributed (e.g., uploaded to PyPI).
# Include the README.md in the package
include README.md
# Include the LICENSE file in the package
include LICENSE
# Include the CODE_OF_CONDUCT.md file in the package
include CODE_OF_CONDUCT.md
# Include any additional data files or directories in the package
# recursive-include path/to/data/directory *
# The above line should be uncommented and modified according to the actual data directory path