1 Star 0 Fork 37

xzhangcqjtu / Taichi

forked from Gitee 极速下载 / Taichi 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.68 KB
一键复制 编辑 原始数据 按行查看 历史
import setuptools
import glob
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Topic :: Software Development :: Compilers',
'Topic :: Multimedia :: Graphics',
'Topic :: Games/Entertainment :: Simulation',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
data_files = glob.glob('python/lib/*')
print(data_files)
packages = setuptools.find_packages() + ['taichi.examples']
print(packages)
setuptools.setup(name=project_name,
packages=packages,
version=version,
description='The Taichi Programming Language',
author='Taichi developers',
author_email='yuanmhu@gmail.com',
url='https://github.com/taichi-dev/taichi',
install_requires=[
'numpy',
'pybind11>=2.5.0',
'colorama',
'setuptools',
'sourceinspect>=0.0.3',
'astor',
],
data_files=[('lib', data_files)],
keywords=['graphics', 'simulation'],
license='MIT',
include_package_data=True,
entry_points={
'console_scripts': [
'ti=taichi.main:main',
],
},
classifiers=classifiers,
has_ext_modules=lambda: True)
# Note: this is a template setup.py used by python/build.py
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/xzhangcqjtu_admin/Taichi.git
git@gitee.com:xzhangcqjtu_admin/Taichi.git
xzhangcqjtu_admin
Taichi
Taichi
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891