diff options
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml index 273b641..5cad3ab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,6 +3,13 @@ # verbose regular expressions by Black. Use [ ] to denote a significant space # character. +[build-system] +requires = [ + 'setuptools >= 42', + 'wheel', + 'setuptools_scm[toml]>=3.4', +] + [tool.black] line-length = 88 target-version = ['py37'] @@ -27,3 +34,5 @@ multi_line_output = 3 include_trailing_comma = true known_first_party = ['glucometerutils'] known_third_party = ['construct', 'hidapi', 'pyserial', 'pyscsi'] + +[tool.setuptools_scm] |