1 Star 0 Fork 2

ssssssss/efinance

forked from Young.Jawie/efinance 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.12 KB
一键复制 编辑 原始数据 按行查看 历史
import pathlib
from setuptools import setup, find_packages
here = pathlib.Path(__file__).parent
# require = (here / "requirements.txt").read_text(encoding='utf-8').split()
require = ['requests','rich','jsonpath', 'pandas', 'tqdm', 'retry', 'multitasking']
readme = (here / "README.md").read_text(encoding='utf-8')
about = {}
exec((here/'efinance'/'__version__.py').read_text(encoding='utf-8'), about)
setup(
name=about['__title__'],
version=about['__version__'],
description=about['__description__'],
long_description=readme,
long_description_content_type="text/markdown",
url=about['__url__'],
author=about['__author__'],
author_email=about['__author_email__'],
license="MIT",
platforms=['any'],
keywords=about['__keywords__'],
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
packages=find_packages(),
install_requires=require,
project_urls=about['__project_urls__']
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ssssssssd/efinance.git
git@gitee.com:ssssssssd/efinance.git
ssssssssd
efinance
efinance
main

搜索帮助