forked from laszukdawid/PyEMD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (41 loc) · 1.51 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
VERSION="0.2.4"
DESCRIPTION = "Implementation of Empirical Mode Decomposition (EMD) and its variations"
def main():
import io
from setuptools import setup
with io.open('README.rst', encoding="utf8") as fp:
long_description = fp.read().strip()
with open('requirements.txt') as f:
required = f.read().splitlines()
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"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="[email protected]",
classifiers=classifiers,
keywords="signal decomposition data analysis",
packages=["PyEMD"],
install_requires=required,
test_suite="PyEMD.tests"
)
dist = setup(**setup_params)
if __name__=="__main__":
main()