diff options
| author | Catherine <whitequark@whitequark.org> | 2023-02-03 05:30:22 +0000 |
|---|---|---|
| committer | Catherine <whitequark@whitequark.org> | 2023-02-03 05:30:40 +0000 |
| commit | eb24f42261f2614eca1446ce2ceabce94be38b00 (patch) | |
| tree | 198b2f140400f4de218ff66f71d7eabcb1d20295 /pyproject.toml | |
| parent | 1c72b3800beb4da3dbe108b10adddfc69765efe8 (diff) | |
Migrate from setup.py to pyproject.toml.
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..bc0ccb8 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,23 @@ +[build-system] +requires = ["wheel", "setuptools~=67.0", "setuptools_scm[toml]>=6.2"] +build-backend = "setuptools.build_meta" + +[project] +dynamic = ["version"] + +name = "amaranth-boards" +description = "Board and connector definitions for Amaranth HDL" +authors = [{name = "Amaranth HDL contributors"}] +license = {file = "LICENSE.txt"} + +dependencies = [ + "importlib_metadata; python_version<'3.8'", + "amaranth>=0.2,<0.5", +] + +[project.urls] +"Source Code" = "https://github.com/amaranth-lang/amaranth-boards" +"Bug Tracker" = "https://github.com/amaranth-lang/amaranth-boards/issues" + +[tool.setuptools_scm] +local_scheme = "node-and-timestamp" |
