Skip to content

Instantly share code, notes, and snippets.

@toxinu
Last active November 24, 2020 03:46
Show Gist options
  • Save toxinu/5ef6f5e67bd496f430ca5850b536aef4 to your computer and use it in GitHub Desktop.
Save toxinu/5ef6f5e67bd496f430ca5850b536aef4 to your computer and use it in GitHub Desktop.
blog/how-to-store-your-python-package-metadata
__all__ = [
"__title__", "__summary__", "__uri__", "__version__", "__author__",
"__email__", "__license__", "__copyright__",
]
__title__ = "my-package"
__summary__ = "My package is something."
__uri__ = "https://example.com"
__version__ = "0.1.0"
__author__ = u"toxinu"
__email__ = "[email protected]"
__license__ = "BSD"
__copyright__ = "Copyright 2016 %s" % __author__
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment