mirror of
https://github.com/wassname/pytorch-ts.git
synced 2026-06-27 16:31:20 +08:00
fd64d0c4a4
for changes in gluonts 0.9.x
31 lines
828 B
Python
31 lines
828 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="pytorchts",
|
|
version="0.6.0",
|
|
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.8.0",
|
|
"gluonts>=0.9.0",
|
|
"holidays",
|
|
"numpy~=1.16",
|
|
"pandas~=1.1",
|
|
"scipy",
|
|
"tqdm",
|
|
"matplotlib",
|
|
"tensorboard",
|
|
],
|
|
test_suite="tests",
|
|
tests_require=["flake8", "pytest"],
|
|
)
|