chipmuenk / pyfda

Python Filter Design Analysis Tool
http://chipmuenk.github.io/
MIT License
648 stars 93 forks source link

`bak`, `docs`, and `recipe` directories included in PyPI packages #235

Closed ryanvolz closed 1 year ago

ryanvolz commented 1 year ago

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!