1 Star 0 Fork 0

WangYue0426/pyspline

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
Josh Anibal 提交于 2022-03-31 07:28 . update python deps (#39)
from setuptools import setup
import re
import os
__version__ = re.findall(
r"""__version__ = ["']+([0-9\.]*)["']+""",
open("pyspline/__init__.py").read(),
)[0]
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
with open("doc/requirements.txt") as f:
docs_require = f.read().splitlines()
setup(
name="pyspline",
version=__version__,
description="pySpline is a package containing code for working with b-spline curve, surface, and volume objects",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="spline b-spline optimization",
author="",
author_email="",
url="https://github.com/mdolab/pyspline",
license="Apache License Version 2.0",
packages=["pyspline"],
package_data={"pyspline": ["*.so"]},
install_requires=["numpy>=1.16", "scipy>=1.2"],
extra_requires={
"docs": docs_require,
"testing": ["parameterized", "testflo>=1.4.5", "baseclasses>=1.6.1"],
},
classifiers=["Operating System :: Linux", "Programming Language :: Python, Fortran"],
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wangyue0426/pyspline.git
git@gitee.com:wangyue0426/pyspline.git
wangyue0426
pyspline
pyspline
main

搜索帮助