Ai
2 Star 0 Fork 0

mirrors_lepy/corner.py

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
James Tocknell 提交于 2017-01-04 08:23 +08:00 . Add support for universal wheel
#!/usr/bin/env python
import os
import sys
from setuptools import setup
if sys.argv[-1] == "publish":
os.system("python setup.py sdist bdist_wheel upload")
sys.exit()
# Hackishly inject a constant into builtins to enable importing of the
# package before the dependencies are installed.
if sys.version_info[0] < 3:
import __builtin__ as builtins
else:
import builtins
builtins.__CORNER_SETUP__ = True
import corner # NOQA
setup(
name="corner",
version=corner.__version__,
author="Daniel Foreman-Mackey",
author_email="foreman.mackey@gmail.com",
url="https://github.com/dfm/corner.py",
packages=["corner"],
description="Make some beautiful corner plots of samples.",
long_description=open("README.rst").read(),
package_data={"": ["README.rst", "LICENSE"]},
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
install_requires=["numpy", "matplotlib"],
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_lepy/corner.py.git
git@gitee.com:mirrors_lepy/corner.py.git
mirrors_lepy
corner.py
corner.py
master

搜索帮助