diff options
author | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2021-12-12 23:02:19 -0500 |
---|---|---|
committer | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2021-12-12 23:02:19 -0500 |
commit | 82cc2c3cbeaab114fa17915be944b893b8da482a (patch) | |
tree | c4232cfc47eafa08f2d8206726b6765c64354fe8 | |
parent | 514d8898ae60aee5bcca150ec83d8afa028c3881 (diff) | |
download | qolab-82cc2c3cbeaab114fa17915be944b893b8da482a.tar.gz qolab-82cc2c3cbeaab114fa17915be944b893b8da482a.zip |
added pyproject.toml to generate package with flit
-rw-r--r-- | pyproject.toml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..1dca94c --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,11 @@ +[build-system] +requires = ["flit_core >=2,<4"] +build-backend = "flit_core.buildapi" + +[tool.flit.metadata] +module = "qolab" +author = "Eugeniy E. Mikhailov" +author-email = "eemikh@wm.edu" +classifiers = ["License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"] +description-file = "README.md" + |