Skip to content

Instantly share code, notes, and snippets.

@toxinu
Last active September 23, 2020 16:30
Show Gist options
  • Save toxinu/96abf6963e0009648b6b4d62fa4a6e23 to your computer and use it in GitHub Desktop.
Save toxinu/96abf6963e0009648b6b4d62fa4a6e23 to your computer and use it in GitHub Desktop.
blog/how-to-store-your-python-package-metadata
# cat my_package/__init__.py
from .__about__ import (
__author__, __copyright__, __email__, __license__, __summary__, __title__,
__uri__, __version__
)
__all__ = [
"__title__", "__summary__", "__uri__", "__version__", "__author__",
"__email__", "__license__", "__copyright__",
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment