mirror of
https://github.com/wassname/seq2seq-time.git
synced 2026-06-27 17:50:09 +08:00
11 lines
255 B
Python
11 lines
255 B
Python
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name='seq2seq_time',
|
|
packages=find_packages(),
|
|
version='0.1.0',
|
|
description='Using sequence to sequence interfaces for timeseries regression',
|
|
author='3springs',
|
|
license='MIT',
|
|
)
|