2019-05-08 00:10:54 +04:00
|
|
|
import setuptools
|
2018-02-26 20:11:29 +04:00
|
|
|
|
2019-05-08 00:10:54 +04:00
|
|
|
setuptools.setup(
|
2018-02-26 20:11:29 +04:00
|
|
|
name='pyFTS',
|
2021-02-12 18:49:25 +04:00
|
|
|
install_requires=[
|
|
|
|
'matplotlib',
|
|
|
|
'numpy',
|
|
|
|
'pandas'],
|
2021-01-13 00:40:21 +04:00
|
|
|
packages=['pyFTS', 'pyFTS.benchmarks', 'pyFTS.common', 'pyFTS.common.transformations', 'pyFTS.data',
|
|
|
|
'pyFTS.models.ensemble', 'pyFTS.models', 'pyFTS.models.seasonal', 'pyFTS.partitioners',
|
|
|
|
'pyFTS.probabilistic', 'pyFTS.tests', 'pyFTS.models.nonstationary', 'pyFTS.models.multivariate',
|
2019-05-08 00:10:54 +04:00
|
|
|
'pyFTS.models.incremental', 'pyFTS.hyperparam', 'pyFTS.distributed', 'pyFTS.fcm'],
|
2022-04-10 21:32:24 +04:00
|
|
|
version='1.7',
|
2018-02-26 20:11:29 +04:00
|
|
|
description='Fuzzy Time Series for Python',
|
2019-05-08 05:18:57 +04:00
|
|
|
long_description='Fuzzy Time Series for Python',
|
2019-05-08 00:10:54 +04:00
|
|
|
long_description_content_type="text/markdown",
|
2018-02-26 20:11:29 +04:00
|
|
|
author='Petronio Candido L. e Silva',
|
|
|
|
author_email='petronio.candido@gmail.com',
|
2018-10-29 23:48:05 +04:00
|
|
|
url='https://pyfts.github.io/pyFTS/',
|
2022-04-10 21:32:24 +04:00
|
|
|
download_url='https://github.com/PYFTS/pyFTS/archive/pkg1.7.tar.gz',
|
2018-02-26 20:11:29 +04:00
|
|
|
keywords=['forecasting', 'fuzzy time series', 'fuzzy', 'time series forecasting'],
|
2018-03-06 01:32:23 +04:00
|
|
|
classifiers=[
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Programming Language :: Python :: 3.4',
|
|
|
|
'Programming Language :: Python :: 3.5',
|
|
|
|
'Programming Language :: Python :: 3.6',
|
2023-05-25 02:46:07 +04:00
|
|
|
'Programming Language :: Python :: 3.8',
|
2023-05-25 03:18:52 +04:00
|
|
|
'Programming Language :: Python :: 3.10',
|
2024-08-07 11:18:21 +04:00
|
|
|
'Programming Language :: Python :: 3.11',
|
2019-05-08 00:10:54 +04:00
|
|
|
'Intended Audience :: Science/Research',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'Intended Audience :: Education',
|
|
|
|
'Topic :: Scientific/Engineering',
|
|
|
|
'Development Status :: 5 - Production/Stable'
|
2021-02-12 18:49:25 +04:00
|
|
|
|
2019-05-07 23:24:59 +04:00
|
|
|
]
|
2017-07-07 17:54:28 +04:00
|
|
|
)
|