xxxx.__pkginfo__ module¶
Python package meta informations used by setup.py and other project files.
Single point of source for all xxxx package metadata. After modifying this file it is needed to recreate some projet files:
./local/py3/bin/python -c "from xxxx.__pkginfo__ import *; print(README)" > README.rst
./local/py3/bin/python -c "from xxxx.__pkginfo__ import *; print(requirements_txt)" > requirements.txt
About python packaging see Packaging Python Projects and Python Packaging
Authority. Most of the names here are mapped to setup(<name1>=...,
<name2>=...)
arguments in setup.py
. See Packaging and distributing
projects about setup(...)
arguments. If this is all new for you, start
with PyPI Quick and Dirty.
Further read: