Last active
September 23, 2020 16:30
-
-
Save toxinu/96abf6963e0009648b6b4d62fa4a6e23 to your computer and use it in GitHub Desktop.
blog/how-to-store-your-python-package-metadata
This file contains 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
# 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