资源简介
mfix官方下载的源代码,详细信息科访问 https://mfix.netl.doe.gov/ ,或者直接度娘mfix
代码片段和文件信息
“““A setuptools based setup module for the MFiX GUI.
See:
https://packaging.python.org/en/latest/distributing.html
https://mfix.netl.doe.gov/
“““
import io
import os
from os.path import dirname join normpath
from setuptools import setup find_packages
from mfixgui.version import __version__
# Get the long description from the README file
README = join(normpath(dirname(__file__)) “README.rst“)
with io.open(README encoding=“utf-8“) as readme:
LONG_DEscriptION = readme.read()
setup(
name=“mfix“
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code see
# https://packaging.python.org/en/latest/single_source_version.html
version=__version__
description=“MFiX computational fluid dynamics software“
long_description=LONG_DEscriptION
# The project‘s main homepage.
url=“https://mfix.netl.doe.gov/“
# Author details
author=“Multiflow Science Group at NETL“
platforms=[“any“]
# Choose your license
license=“public domain“
# To avoid installing in an .egg subdirectory
zip_safe=False
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
“Development Status :: 5 - Production/Stable“
“Intended Audience :: Developers“
“Topic :: Computational Fluid Dynamics :: GUI“
“License :: public domain“
“Programming Language :: Python :: 3.7“
]
packages=find_packages()
# List run-time dependencies here. These will be installed by pip when
# your project is installed. For an analysis of “install_requires“ vs pip‘s
# requirements files see:
# https://packaging.python.org/en/latest/requirements.html
install_requires=(
[
“numpy“
“psutil“
“pyqtgraph“
“qtpy>=1.2.1“
“simpleeval>=0.9.5“
“simplejson“
]
)
package_data={
“mfixgui.colormaps“: [“*“]
“mfixgui.images“: [“*.png“ “*.svg“]
“mfixgui.output_templates“: [“*“]
“mfixgui.particle_props“: [“particle_props.json“]
“mfixgui.tools“: [“template_data.json“]
“mfixgui.uifiles“: [“*“]
“mfixgui.widgets“: [“burcat.pickle“]
}
# To provide executable scripts use entry points in preference to the
# “scripts“ keyword. Entry points provide cross-platform support and allow
# pip to create the appropriate form of executable for the target platform.
entry_points={
“console_scripts“: (
[
“build_mfixsolver=mfixgui.build_mfixsolver:main“
“mfixversioninfo=mfixgui.version_info:main“
]
)
“gui_scripts“: [“mfix=mfixgui.gui:main“]
}
if not os.environ.get(“CONDA_BUILD“)
else {}
)
- 上一篇:二人斗地主-cocs2d-lua
- 下一篇:视觉SLAM十四讲PPT-高翔亲笔
相关资源
- 双二阶广义积分器SOGI软件锁相(基于
- TMF8801驱动参考代码
- 代码项目“生成”微博、知乎、
- ARM9指令cache的verilog代码
- STM32+TMC5160代码电路图.rar
- 压缩感知常见测量矩阵一维仿真信号
- pppd2.4.7源代码以及拨号脚本
- Apache Subversion1.10.3服务端SVN
- ARM7TDMI-S在嵌入式系统中的Bootloader代码
- 酒店预订管理系统源代码
- Xyratex欲部分收购Ario的RAID代码
- Marvell 88W8686 WiFi模块的ADHOC热点创建代
- 机会路由源代码+仿真工具(SCORP)
- 批量替换证件照片的底色(含源代码
- cocos2d-x飞机大战项目
- 编译原理实验:词法分析,语法分析
- 分享一个远程控制软件源代码
- BLE-CC254x-1.3.2 蓝牙官方源代码
- createKeep
- 使用delphi+intraweb进行微信开发1~4代码
- 基于Freemarker模板的代码生成器后台代
- Ubuntu下操作Excel,qt代码
- 代码之美高清中文版,强烈推荐!
- opencl编程指南随书代码
- 初学Visual Basic 2010代码
- VS2010、VS2012、VS2013代码自动注释插件
- eclipse、idea代码模板
- eclipse统计代码工具
- 代码统计工具
- SourceCount代码统计
评论
共有 条评论