Hi there! I’m trying to apply pants to the existi...
# general
f
Hi there! I’m trying to apply pants to the existing project. The project so far uses pyproject.toml for building. But the pyproject.toml uses setuptools, not poetry. Is there a way to tell Pants, to use dependenices from such file while inferring 3rdpaty dependencies?
Copy code
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"

[project]
name = "tool"
readme = "README.md"
requires-python = ">=3.7"
dynamic = ["version"]
dependencies = [
    "boto3",
    "requests",
]
...
e
Not yet, but it's being worked on: https://github.com/pantsbuild/pants/pull/16932
👍 1