laszukdawid / PyEMD

Python implementation of Empirical Mode Decompoisition (EMD) method
https://pyemd.readthedocs.io/
Apache License 2.0
857 stars 222 forks source link

file setup.py missing #117

Closed MaNannn closed 2 years ago

MaNannn commented 2 years ago

I haven't find setup.py file in this project. Is there any missing there?

laszukdawid commented 2 years ago

Can you explain what you are trying to do and why you expect that file?

If you're building the package locally then please update your pip and setuptools with pip install --upgrade pip setuptools. That file, setup.py, isn't needed for anything and setup.cfg is sufficient (https://setuptools.pypa.io/en/latest/userguide/quickstart.html). In addition, there's a movement towards a single config file pyproject.toml so in the "near" future all other files should go away.

falseywinchnet commented 2 years ago

I can't install the package with python. I want your visualization plotting for my research. Also EMD drools, ITD rules- check out my PyITD repo for a(unfortunantly patented for a little while longer) approach to signal decomposition.

falseywinchnet commented 2 years ago

what happens is that pip installs the package but then trying to import i get modulenotfound error and then line 6 in module from PyEMD.CEEMDAN import CEEMDAN #noqa

laszukdawid commented 2 years ago

Please update Python to 3.6 (or higher) and upgrade pip and setuptools using

pip install --upgrade pip setuptools