I'm looking to package pyfda for conda-forge so I can include it in radioconda, and I noticed that these extra directories were being included included in the PyPI source package (and thus also the wheel and my intended conda package). This looks like something you tried to clean up already, unfortunately unsuccessfully.
After poking around, it looks like doing prune bak, etc. instead of exclude bak in the MANIFEST.in will do the job. As for tests, if the intention is to exclude pyfda/tests, then I think you'll need to prefix it with pyfda/ as in prune pyfda/tests.
As for the conda package, I noticed that that was something that you used to do a few years ago but stopped because it was too much work. Fortunately, the tooling is nicer now and putting packages on the conda-forge community channel greatly lessens the maintenance burden. I don't mean to step on any toes, so if you're interested in co-maintaining the conda-forge packaging I would be happy to include you, or if you'd rather not be bothered then I'm happy to do it alone. Cheers!
I'm looking to package pyfda for conda-forge so I can include it in radioconda, and I noticed that these extra directories were being included included in the PyPI source package (and thus also the wheel and my intended conda package). This looks like something you tried to clean up already, unfortunately unsuccessfully.
After poking around, it looks like doing
prune bak
, etc. instead ofexclude bak
in theMANIFEST.in
will do the job. As fortests
, if the intention is to excludepyfda/tests
, then I think you'll need to prefix it withpyfda/
as inprune pyfda/tests
.As for the conda package, I noticed that that was something that you used to do a few years ago but stopped because it was too much work. Fortunately, the tooling is nicer now and putting packages on the conda-forge community channel greatly lessens the maintenance burden. I don't mean to step on any toes, so if you're interested in co-maintaining the conda-forge packaging I would be happy to include you, or if you'd rather not be bothered then I'm happy to do it alone. Cheers!