Hello I have a question: I ran `./pants tailor ::...
# general
p
Hello I have a question: I ran
./pants tailor ::
in my python repo and got many BUILD files (pants v2.14), but they all contain a single line
python_sources()
with nothing else in it. I am comparing to the official python repo which has slightly more stuff in it. So is that single line all I need in almost all cases? It seems that name field has a default and if I don’t have it specified.
w
that’s correct! in a number of cases you end up needing additional metadata later (to explicitly specify dependencies, add timeouts, add tags, etc), but at least initially, you won’t need those.