Revision a2ee3782be06dbaae5e65031a53d256a18f6b810 authored by Dawid Laszuk on 11 June 2018, 06:59:44 UTC, committed by Dawid Laszuk on 11 June 2018, 06:59:44 UTC
1 parent cb0336c
Raw File
setup.py
#!/usr/bin/env python

VERSION="0.2.5"

DESCRIPTION = "Implementation of Empirical Mode Decomposition (EMD) and its variations"

def main():
    import io
    from setuptools import setup

    with io.open('README.md', encoding="utf8") as fp:
        long_description = fp.read().strip()

    with open('requirements.txt') as f:
        required = f.read().splitlines()

    classifiers=[
        "Intended Audience :: Information Technology",
        "Intended Audience :: Science/Research",
        "Topic :: Scientific/Engineering",
        "Topic :: Scientific/Engineering :: Information Analysis",
        "Topic :: Scientific/Engineering :: Mathematics"
    ]

    setup_params = dict(
        name="EMD-signal",
        version=VERSION,
        description=DESCRIPTION,
        long_description=long_description,
        url="https://github.com/laszukdawid/PyEMD",
        author="Dawid Laszuk",
        author_email="laszukdawid@gmail.com",
        license="Apache-2.0",
        classifiers=classifiers,
        keywords="signal decomposition data analysis",
        packages=["PyEMD"],
        install_requires=required,
        python_requires='>=2.6, !=3.0.*, !=3.1.*, !=3.2.*, <4',
        test_suite="PyEMD.tests",
    )

    dist = setup(**setup_params)

if __name__=="__main__":
    main()
back to top