Files
pytorch-ts/setup.py
T
Dr. Kashif Rasul ea2c05de7f updated readme
2020-03-11 15:11:14 +01:00

37 lines
805 B
Python

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