-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathsetup.py
36 lines (33 loc) · 1.37 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
#setup.py
import setuptools
with open('README.md', 'r') as fh:
long_description = fh.read()
setuptools.setup(
name='CEEMDAN_LSTM',
version='1.2.1',
packages=setuptools.find_packages(),
install_requires=['numpy >= 1.17.3',
'pandas >= 1.2.0',
'EMD-signal >= 1.2.3',
'optuna >= 3.0.0',
'vmdpy',
'sampen',
'matplotlib',
'scikit-learn',
'tensorflow >= 2.5.0, <= 2.10.0',
],
package_data={'CEEMDAN_LSTM': ['datasets/*']},
description='CEEMDAN_LSTM is a Python project for decomposition-integration forecasting models based on EMD methods and LSTM.',
url='http://github.com/FateMurphy/CEEMDAN_LSTM',
author='Feite Zhou',
author_email='[email protected]',
keywords = ['CEEMDAN', 'VMD', 'LSTM', 'decomposition', 'forecasting'],
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',]
)