diff options
| author | seth <[email protected]> | 2022-08-26 20:48:42 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2022-08-26 20:53:34 -0400 |
| commit | 22378abce34f4b27db884692d5d99bec9dcef034 (patch) | |
| tree | d6afc3e2b28865b00bc809dd0c2a1d8d970ebf98 /pyproject.toml | |
| parent | a2c082e7d3ecba60c872ef23e5db59ecfa6aed97 (diff) | |
[build-system] switch to flit
setuptools >=61 isn't supported on many distros
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/pyproject.toml b/pyproject.toml index f34ead3..d91fce0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,12 +1,12 @@ [build-system] -requires = ["setuptools>=61.0"] -build-backend = "setuptools.build_meta" +requires = ["flit_core >=3.2,<4"] +build-backend = "flit_core.buildapi" [project] name = "hiccup" version = "0.0.1" authors = [ - { name = "getchoo", email="[email protected]"}, + { name = "getchoo", email="[email protected]"}, ] description = "a python script to help keep you up to date" readme = "README.md" @@ -24,7 +24,3 @@ classifiers = [ [project.scripts] hiccup = "hiccup:main" - -[tool.setuptools] -package-dir = {"" = "src"} -packages = ["hiccup"] |
