index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2021-04-13 07:21:33 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-13 07:21:33 +0000 |
commit | 509784b3e5d4edf33a4004b083eb7deee98fc9ca (patch) | |
tree | 84995382c5af79bc5a42a4e4a0041e337f72d109 /pyproject.toml | |
parent | 7c902a6c83868abb7913a4303dfd36306ca8d189 (diff) | |
parent | d1bf6a6182ea7c8246d703daf6523e5198f63971 (diff) |
-rw-r--r-- | pyproject.toml | 31 |
diff --git a/pyproject.toml b/pyproject.toml index 9787c3bd..da6f860e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,30 @@ [build-system] -requires = ["setuptools", "wheel"] -build-backend = "setuptools.build_meta" +requires = ["flit_core >=2,<4"] +build-backend = "flit_core.buildapi" + +[tool.flit.metadata] +module = "archinstall" +author = "Anton Hvornum" +author-email = "anton@hvornum.se" +home-page = "https://archlinux.org" +classifiers = [ "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", +"Programming Language :: Python :: 3.8", +"Programming Language :: Python :: 3.9", +"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", +"Operating System :: POSIX :: Linux", +] +description-file = "README.md" +requires-python=">=3.8" +[tool.flit.metadata.urls] +Source = "https://github.com/archlinux/archinstall" +Documentation = "https://archinstall.readthedocs.io/" + +[tool.flit.scripts] +archinstall = "archinstall:run_as_a_module" + +[tool.flit.sdist] +include = ["docs/"] +exclude = ["docs/*.html", "docs/_static","docs/*.png","docs/*.psd"] + +[tool.flit.metadata.requires-extra] +doc = ["sphinx"]
\ No newline at end of file |