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

pyproject.toml (563B)


      1 [build-system]
      2 requires = ["setuptools>=61.0"]
      3 build-backend = "setuptools.build_meta"
      4 
      5 [project]
      6 name = "cs107_package"
      7 version = "0.0.1"
      8 authors = [
      9   { name="Fabian Wermelinger", email="fabianw@seas.harvard.edu" },
     10 ]
     11 description = "Test project for continuous integration and testing"
     12 readme = "README.md"
     13 requires-python = ">=3.9"
     14 classifiers = [
     15     "Programming Language :: Python :: 3",
     16     "License :: OSI Approved :: MIT License",
     17     "Topic :: Software Development :: Testing"
     18 ]
     19 
     20 [project.urls]
     21 "Homepage" = "https://harvard-iacs.github.io/2022-CS107/"