setup.cfgのoptions
#パッケージングして配布する
依存関係を書く
https://setuptools.pypa.io/en/latest/userguide/declarative_config.html#options
install_requiresにはバージョンを直接指定しない(動画アーカイブ 19:02)
ref: https://www.slideshare.net/aodag/python77/26
NG:awesome_package==1.0.0
ガチガチにすると他のパッケージのバージョンとぶつかる
範囲に留める
setup.cfg options extras_require
setup.cfg options packages = find:
setup.cfg options package_dir
setup.cfg options install_requires
setup.cfg options dependency_links(deprecated?)