diff options
| author | 2023-10-07 06:54:28 +0800 | |
|---|---|---|
| committer | 2023-10-07 06:54:28 +0800 | |
| commit | 0b3a4050d98812a517f2d31fdc33ca9e826d424b (patch) | |
| tree | aa30a5a28db75b723c18617907c5212b64af27ec | |
| parent | 991fd7a6d67ee017c57beaaa21fc31c4bee7944d (diff) | |
| download | infini-0b3a4050d98812a517f2d31fdc33ca9e826d424b.tar.gz infini-0b3a4050d98812a517f2d31fdc33ca9e826d424b.zip | |
fix: no module named 'pkg-resources'
| -rw-r--r-- | pdm.lock | 23 | ||||
| -rw-r--r-- | pyproject.toml | 1 |
2 files changed, 23 insertions, 1 deletions
@@ -6,7 +6,7 @@ groups = ["default"] cross_platform = true static_urls = false lock_version = "4.3" -content_hash = "sha256:097eaf5671ea0a3d5d922ecc617a7352afc55051643229c403e398a000c4a06b" +content_hash = "sha256:aac2ab75c17394665d42bf7713cd686f76c0c4a6f3a72b53e5f1cad7d78e113b" [[package]] name = "anyio" @@ -293,6 +293,17 @@ files = [ ] [[package]] +name = "distribute" +version = "0.7.3" +summary = "" +dependencies = [ + "setuptools>=0.7", +] +files = [ + {file = "distribute-0.7.3.zip", hash = "sha256:3dc7a8d059dcf72f0ead2fa2144a24ee0ef07dce816e8c3545d7345767138c5e"}, +] + +[[package]] name = "essentials" version = "1.1.5" summary = "General purpose classes and functions, reusable in any kind of Python application" @@ -1203,6 +1214,16 @@ files = [ ] [[package]] +name = "setuptools" +version = "68.2.2" +requires_python = ">=3.8" +summary = "Easily download, build, install, upgrade, and uninstall Python packages" +files = [ + {file = "setuptools-68.2.2-py3-none-any.whl", hash = "sha256:b454a35605876da60632df1a60f736524eb73cc47bbc9f3f1ef1b644de74fd2a"}, + {file = "setuptools-68.2.2.tar.gz", hash = "sha256:4ac1475276d2f1c48684874089fefcd83bd7162ddaafb81fac866ba0db282a87"}, +] + +[[package]] name = "six" version = "1.16.0" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" diff --git a/pyproject.toml b/pyproject.toml index 0f13fe28..2365388a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,6 +20,7 @@ dependencies = [ "mkdocs-redirects>=1.2.1", "mike>=1.1.2", "mkdocstrings>=0.23.0", + "distribute>=0.7.3", ] requires-python = ">=3.8" readme = "README.md" |
