加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.38 KB
一键复制 编辑 原始数据 按行查看 历史
马瑞祥 提交于 2024-05-20 21:47 . feat: 产品类增加默认定价引擎
from setuptools import setup, find_packages
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setup(
name='pricelib',
version='1.0.1',
packages=find_packages(),
description='pricelib is an open-source financial derivatives pricing library written in Python.',
long_description=long_description,
long_description_content_type='text/markdown',
author='上海凌瓴信息科技有限公司',
author_email='marx@galatech.com.cn',
url='https://gitee.com/lltech/pricelib',
install_requires=[
'numpy>=1.24.1, <=1.26.4',
'pandas>=2.0.3, <=2.2.2',
'numba>=0.57.1, <=0.59.1',
'scipy>=1.8.0, <=1.13.0',
'importlib-metadata>=6.8.0, <=7.1.0',
],
extras_require={
'dev': [
'pytest',
'flake8',
'pylint',
],
'plot': [
'matplotlib>=3.5.3, <=3.7.5',
'plotly>=5.16.1, <=5.22.0',
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化