1 Star 5 Fork 3

PaddlePaddle/PaddleTS

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.31 KB
一键复制 编辑 原始数据 按行查看 历史
zhouchangda 提交于 2024-06-26 14:21 +08:00 . modify version
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
"""
Setup script.
"""
from setuptools import find_packages, find_namespace_packages, setup
from pathlib import Path
def read_requirements(path):
"""read requirements"""
return list(Path(path).read_text(encoding='utf-8').splitlines())
all_reqs = read_requirements("requirements.txt")
setup(
name='paddlets',
version='1.1.0',
maintainer='paddlets Team',
maintainer_email='paddlets@baidu.com',
packages=find_packages(include=['paddlets', 'paddlets.*']) +
find_namespace_packages(include=['paddlets', 'paddlets.*']),
url='https://github.com/PaddlePaddle/PaddleTS',
license='LICENSE',
description='PaddleTS (Paddle Time Series Tool), \
PaddlePaddle-based Time Series Modeling in Python',
long_description=open(
'README.md', encoding='utf-8').read(),
long_description_content_type="text/markdown",
python_requires='>=3.7',
install_requires=all_reqs,
extras_require={"all": all_reqs},
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
])
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/paddlepaddle/PaddleTS.git
git@gitee.com:paddlepaddle/PaddleTS.git
paddlepaddle
PaddleTS
PaddleTS
release_v1.1

搜索帮助