1 Star 0 Fork 0

yutiansut / pyrb

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1008 Bytes
一键复制 编辑 原始数据 按行查看 历史
jcharles 提交于 2019-08-25 14:17 . update README + format
from setuptools import setup, find_packages
DISTNAME = "pyrb"
VERSION = "1.0.1"
DESCRIPTION = (
"""pyrb is a Python library to solve constrained risk budgeting problem."""
)
LONG_DESCRIPTION = (
"""pyrb is a Python library to solve constrained risk budgeting problem."""
)
AUTHOR = "Jean-Charles Richard"
AUTHOR_EMAIL = "jcharles.richard@gmail.com"
URL = "https://github.com/jcrichard/pyrb"
LICENSE = "Apache License, Version 2.0"
REQUIREMENTS = ["pandas>=0.19", "numba>=0.4", "quadprog>=0.1.0"]
if __name__ == "__main__":
setup(
name=DISTNAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
license=LICENSE,
packages=find_packages(),
package_data={"docs": ["*"]},
include_package_data=True,
zip_safe=False,
install_requires=REQUIREMENTS,
classifiers=["Programming Language :: Python :: 3.4"],
)
1
https://gitee.com/yutiansut/pyrb.git
git@gitee.com:yutiansut/pyrb.git
yutiansut
pyrb
pyrb
master

搜索帮助