cs107-lecture-examples

Example codes used during Harvard CS107 lectures
git clone https://git.0xfab.ch/cs107-lecture-examples.git
Log | Files | Refs | README | LICENSE

__init__.py (269B)


      1 import importlib.metadata
      2 from .subpkg_1 import (foo, bar)
      3 from .subpkg_2 import baz
      4 
      5 # The following will get the version of your project from the `setup.cfg`
      6 # configuration:
      7 __version__ = importlib.metadata.version('Fall2022_CS107')
      8 
      9 __all__ = ['foo', 'bar', 'baz']