1 Star 0 Fork 1

triobox/quantstats

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 2.85 KB
一键复制 编辑 原始数据 按行查看 历史
ran 提交于 2021-03-24 17:16 . fixed pip installer
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
"""QuantStats: Portfolio analytics for quants
https://github.com/ranaroussi/quantstats
QuantStats performs portfolio profiling, to allow quants and
portfolio managers to understand their performance better,
by providing them with in-depth analytics and risk metrics.
"""
from setuptools import setup, find_packages
# from codecs import open
import io
from os import path
# --- get version ---
version = "unknown"
with open("quantstats/version.py") as f:
line = f.read().strip()
version = line.replace("version = ", "").replace('"', '')
# --- /get version ---
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with io.open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
with io.open(path.join(here, 'requirements.txt'), encoding='utf-8') as f:
requirements = [line.rstrip() for line in f]
setup(
name='QuantStats',
version=version,
description='Portfolio analytics for quants',
long_description=long_description,
url='https://github.com/ranaroussi/quantstats',
author='Ran Aroussi',
author_email='[email protected]',
license='Apache Software License',
classifiers=[
'License :: OSI Approved :: Apache Software License',
# 'Development Status :: 1 - Planning',
# 'Development Status :: 2 - Pre-Alpha',
# 'Development Status :: 3 - Alpha',
# 'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Science/Research',
'Topic :: Office/Business :: Financial',
'Topic :: Office/Business :: Financial :: Investment',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Mathematics',
# 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
platforms=['any'],
keywords="""quant algotrading algorithmic-trading quantitative-trading
quantitative-analysis algo-trading visualization plotting""",
packages=find_packages(exclude=['contrib', 'docs', 'tests', 'examples']),
install_requires=requirements,
entry_points={
'console_scripts': [
'sample=sample:main',
],
},
include_package_data=True,
# package_data={
# 'static': 'quantstats/report.html*'
# },
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/triobox/quantstats.git
[email protected]:triobox/quantstats.git
triobox
quantstats
quantstats
master

搜索帮助