mirror of
https://github.com/wassname/pytorch-ts.git
synced 2026-06-27 17:49:41 +08:00
d39c569d47
with user token updated url added author only sdist make bdist_wheel fix typo publish to pypi moved to 1 workflow remove test workflow add to test github.event_name run on relase created
37 lines
867 B
Python
37 lines
867 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",
|
|
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',
|
|
'scipy',
|
|
'tqdm',
|
|
'pydantic',
|
|
'matplotlib',
|
|
'python-rapidjson',
|
|
'tensorboard',
|
|
],
|
|
|
|
test_suite='tests',
|
|
tests_require = [
|
|
'flake8',
|
|
'pytest'
|
|
],
|
|
)
|