Files
pytorch-ts/setup.py
T
Kashif RasulandGitHub Enterprise 248f25238f added generate_m5_dataset (#20)
* added generate_m5_dataset

its slow to make it currently

* add "m5" to repository

* pandas fix
2020-09-01 13:56:07 +02:00

37 lines
877 B
Python

from setuptools import setup, find_packages
setup(
name='pytorchts',
version='0.1.1',
description="PyTorch Probabilistic Time Series Modeling framework",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author='Kashif Rasul',
author_email="kashif.rasul@zalando.de",
url='https://github.com/zalandoresearch/pytorch-ts',
license='MIT',
packages=find_packages(exclude=["tests"]),
include_package_data=True,
zip_safe=True,
python_requires=">=3.6",
install_requires = [
'torch>=1.5.0',
'holidays',
'numpy',
'pandas>=1.0,<1.1',
'scipy',
'tqdm',
'pydantic',
'matplotlib',
'python-rapidjson',
'tensorboard',
],
test_suite='tests',
tests_require = [
'flake8',
'pytest'
],
)