1 Star 0 Fork 9

brian/MindQuantFinance

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 900 Bytes
一键复制 编辑 原始数据 按行查看 历史
import pathlib
from setuptools import setup, find_packages
HERE = pathlib.Path(__file__).parent
VERSION = '0.0.1'
PACKAGE_NAME = 'MindQuantFinance'
AUTHOR = 'The MindQuantFinance Authors'
URL = 'https://gitee.com/luweizheng/mind-quant-finance'
LICENSE = 'MIT'
DESCRIPTION = 'AI Accelerated Quantative Finance Library'
LONG_DESCRIPTION = (HERE / "README.md").read_text()
LONG_DESC_TYPE = "text/markdown"
INSTALL_REQUIRES = ['numpy']
TESTS_REQUIRES = ['pytest']
setup(
name=PACKAGE_NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type=LONG_DESC_TYPE,
author=AUTHOR,
license=LICENSE,
url=URL,
install_requires=INSTALL_REQUIRES,
extras_require={
'tests': TESTS_REQUIRES,
'complete': INSTALL_REQUIRES + TESTS_REQUIRES,
},
packages=find_packages(),
python_requires='>=3'
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/brianyeo/mind-quant-finance.git
git@gitee.com:brianyeo/mind-quant-finance.git
brianyeo
mind-quant-finance
MindQuantFinance
master

搜索帮助