pyFTS/setup.py

38 lines
1.6 KiB
Python
Raw Permalink Normal View History

import setuptools
2018-02-26 20:11:29 +04:00
setuptools.setup(
2018-02-26 20:11:29 +04:00
name='pyFTS',
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',
'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',
long_description='Fuzzy Time Series for Python',
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'],
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'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',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Topic :: Scientific/Engineering',
'Development Status :: 5 - Production/Stable'
]
)