14 lines
494 B
Python
14 lines
494 B
Python
|
from distutils.core import setup
|
||
|
setup(
|
||
|
name = 'pyFTS',
|
||
|
packages = ['pyFTS'],
|
||
|
version = '0.1',
|
||
|
description = 'Fuzzy Time Series for Python',
|
||
|
author = 'Petronio Candido L. e Silva',
|
||
|
author_email = 'petronio.candido@gmail.com',
|
||
|
url = 'https://github.com/petroniocandido/pyFTSpackage',
|
||
|
download_url = 'https://github.com/petroniocandido/pyFTSpackage/archive/0.1.tar.gz',
|
||
|
keywords = ['forecasting', 'fuzzy time series', 'fuzzy', 'time series forecasting'],
|
||
|
classifiers = [],
|
||
|
)
|