1 Star 0 Fork 1

Junruoyu-Zheng/TControl

forked from HssinLaw/TControl 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
setup.py 641 Bytes
一键复制 编辑 原始数据 按行查看 历史
ljcloud 提交于 2020-09-01 20:10 +08:00 . 项目从github迁移到gitee
import sys
from setuptools import setup, find_packages
if sys.version_info[: 2] < (3, 6):
raise RuntimeError('Python version >= 3.6 required')
MAJOR = 0
MINOR = 9
MICRO = 11
VERSION = f'{MAJOR}.{MINOR}.{MICRO}'
PACKAGES = ['tcontrol'] + [f"tcontrol.{i}" for i in find_packages('tcontrol')]
setup(
name='TControl',
version=VERSION,
author='HOUXIN LUO',
packages=PACKAGES,
license='BSD 3-clause',
install_requires=['sympy>=1.0', 'numpy>=1.12.0', 'matplotlib>=2.0.0', 'scipy>=1.1.0'],
tests_requires=['nose2>=0.7.4'],
extra_requires={
'doc': ['sphinx>=1.6.6', 'sphinx-rtd-theme>=0.4.0']
}
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/junruoyu-zheng/TControl.git
git@gitee.com:junruoyu-zheng/TControl.git
junruoyu-zheng
TControl
TControl
master

搜索帮助