diff options
-rw-r--r-- | README.md | 9 | ||||
-rw-r--r-- | pyproject.toml | 3 |
2 files changed, 12 insertions, 0 deletions
@@ -12,3 +12,12 @@ To build a python wheel package and put it in `./dist/` directory, run flit build ~~~~~ +## Test instructions + +~~~~~ +export PYTHONPATH=. +python -m pytest +~~~~~ + +Note that we cannot just run `pytest` since I see no way to set the module search path. + diff --git a/pyproject.toml b/pyproject.toml index b8a3214..915b634 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,3 +23,6 @@ requires = [ "pyserial >= 3.4", ] +[project.urls] +Home = "http://qo.physics.wm.edu/cgit/qolab.git/about/" + |