Last active
November 24, 2020 03:46
-
-
Save toxinu/5ef6f5e67bd496f430ca5850b536aef4 to your computer and use it in GitHub Desktop.
blog/how-to-store-your-python-package-metadata
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
__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